mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix 'break' statements in other cases not being inside braces
It just looks bad visually, so I'm fixing it.
This commit is contained in:
@@ -1544,8 +1544,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||
cameramode = 0;
|
||||
colstate = 0;
|
||||
colsuperstate = 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 10: //Final Level, Tower 2
|
||||
{
|
||||
|
||||
@@ -1583,8 +1583,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||
cameramode = 0;
|
||||
colstate = 0;
|
||||
colsuperstate = 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 11: //Tower Hallways //Content is held in final level routine
|
||||
{
|
||||
const int* tmap = finallevel.loadlevel(rx, ry);
|
||||
@@ -1606,8 +1606,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||
background = 9;
|
||||
rcol = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#if !defined(NO_CUSTOM_LEVELS)
|
||||
case 12: //Custom level
|
||||
|
||||
Reference in New Issue
Block a user