mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-22 08:49:46 +01: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:
parent
2646642664
commit
2558cccd40
1 changed files with 3 additions and 3 deletions
|
@ -1544,8 +1544,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||||
cameramode = 0;
|
cameramode = 0;
|
||||||
colstate = 0;
|
colstate = 0;
|
||||||
colsuperstate = 0;
|
colsuperstate = 0;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case 10: //Final Level, Tower 2
|
case 10: //Final Level, Tower 2
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -1583,8 +1583,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||||
cameramode = 0;
|
cameramode = 0;
|
||||||
colstate = 0;
|
colstate = 0;
|
||||||
colsuperstate = 0;
|
colsuperstate = 0;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case 11: //Tower Hallways //Content is held in final level routine
|
case 11: //Tower Hallways //Content is held in final level routine
|
||||||
{
|
{
|
||||||
const int* tmap = finallevel.loadlevel(rx, ry);
|
const int* tmap = finallevel.loadlevel(rx, ry);
|
||||||
|
@ -1606,8 +1606,8 @@ void mapclass::loadlevel(int rx, int ry)
|
||||||
background = 9;
|
background = 9;
|
||||||
rcol = 0;
|
rcol = 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
#if !defined(NO_CUSTOM_LEVELS)
|
#if !defined(NO_CUSTOM_LEVELS)
|
||||||
case 12: //Custom level
|
case 12: //Custom level
|
||||||
|
|
Loading…
Reference in a new issue