Skip to content

Commit

Permalink
Update Input.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Nov 11, 2024
1 parent 5874057 commit 59c00a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/backend/Input.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 59c00a9

Please sign in to comment.