Skip to content

Commit

Permalink
I hate god damn vscode so much
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 committed Oct 15, 2024
1 parent a1f05e8 commit da2a0c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2800,9 +2800,9 @@ class PlayState extends MusicBeatState
private function keysCheck():Void
{
// HOLDING
var holdArray:Array<Bool> = [false, false, false, false];
var pressArray:Array<Bool> = [false, false, false, false];
var releaseArray:Array<Bool> = [false, false, false, false];
var holdArray:Array<Bool> = [];
var pressArray:Array<Bool> = [];
var releaseArray:Array<Bool> = [];
for (key in keysArray)
{
holdArray.push(controls.pressed(key));
Expand Down

0 comments on commit da2a0c4

Please sign in to comment.