From 8d524fb4db2241809174f911d10ec032e6daaf7f Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 7 Sep 2019 21:06:08 +0200 Subject: [PATCH] fix(input): fix a missing mention of "source" --- gamecore/input.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamecore/input.lua b/gamecore/input.lua index ee76baa..21e5f70 100644 --- a/gamecore/input.lua +++ b/gamecore/input.lua @@ -81,7 +81,7 @@ end -- Manage pressed keys function InputManager:flushKeys() - for i,v in ipairs(self.sources) do + for i, source in ipairs(self.sources) do source:flushKeys() end end