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

Fix mixed indentation in Map.h and Map.cpp

Again, not that much. These files more-or-less consistently use their
respective indentation.
This commit is contained in:
Misa 2020-04-02 13:09:22 -07:00 committed by Ethan Lee
parent 3943e160de
commit 5ba1cf7571
2 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@
#include "MakeAndPlay.h"
#if !defined(NO_CUSTOM_LEVELS)
extern editorclass ed;
extern editorclass ed;
#endif
mapclass::mapclass()
@ -1312,7 +1312,7 @@ void mapclass::loadlevel(int rx, int ry)
switch(t)
{
case 0:
#if !defined(MAKEANDPLAY)
#if !defined(MAKEANDPLAY)
case 1: //World Map
tileset = 1;
extrarow = 1;
@ -1571,7 +1571,7 @@ void mapclass::loadlevel(int rx, int ry)
}
}
break;
#endif
#endif
#if !defined(NO_CUSTOM_LEVELS)
case 12: //Custom level
int curlevel=(rx-100)+((ry-100)*ed.maxwidth);

View File

@ -14,7 +14,7 @@
#include "editor.h"
#if !defined(NO_CUSTOM_LEVELS)
extern editorclass ed;
extern editorclass ed;
#endif
class mapclass