1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-29 07:58:30 +02: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:
Misa 2020-07-09 02:59:42 -07:00 committed by Ethan Lee
parent 2646642664
commit 2558cccd40

View File

@ -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