mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Fix bracing of time trial startgamemode
It should be next-line brace, not same-line brace.
This commit is contained in:
parent
e0749801ea
commit
815d96dd4c
1 changed files with 2 additions and 1 deletions
|
@ -2729,7 +2729,8 @@ void scriptclass::startgamemode( int t )
|
|||
game.timetrialparlost = false;
|
||||
game.timetriallevel = t - 3;
|
||||
|
||||
switch (t) {
|
||||
switch (t)
|
||||
{
|
||||
case 3:
|
||||
game.timetrialpar = 75;
|
||||
game.timetrialshinytarget = 2;
|
||||
|
|
Loading…
Reference in a new issue