From 59c00a95676b6d9f44d2651776353096976e20dd Mon Sep 17 00:00:00 2001 From: Joalor64 Date: Mon, 11 Nov 2024 12:12:06 -0500 Subject: [PATCH] Update Input.hx --- source/backend/Input.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/backend/Input.hx b/source/backend/Input.hx index 5d5f42b..099f2fe 100644 --- a/source/backend/Input.hx +++ b/source/backend/Input.hx @@ -73,7 +73,7 @@ class Input { return true; } } else { - for (i in 0...binds[tags].key.length) { + for (i in 0...binds[tag].key.length) { var input = binds[tag].key[i]; if (input != FlxKey.NONE && FlxG.keys.checkStatus(input, state)) return true; @@ -106,7 +106,7 @@ class Input { return true; } } else { - for (j in 0...binds[tags].key.length) { + for (j in 0...binds[tag].key.length) { var input = binds[tag].key[j]; if (input != FlxKey.NONE && FlxG.keys.checkStatus(input, state)) return true;