1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 15:38:30 +02:00

Fix 'if (key.resetWindow)' indentation

It was being indented with tabs instead of spaces.
This commit is contained in:
Misa 2020-06-13 11:38:07 -07:00 committed by Ethan Lee
parent a15d01ad80
commit 60a2e100fc

View File

@ -545,11 +545,11 @@ int main(int argc, char *argv[])
} }
} }
if(key.resetWindow) if(key.resetWindow)
{ {
key.resetWindow = false; key.resetWindow = false;
gameScreen.ResizeScreen(-1, -1); gameScreen.ResizeScreen(-1, -1);
} }
music.processmusic(); music.processmusic();
graphics.processfade(); graphics.processfade();