mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-04 08:06:16 +03: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:
@@ -3,7 +3,7 @@
|
|||||||
#include "MakeAndPlay.h"
|
#include "MakeAndPlay.h"
|
||||||
|
|
||||||
#if !defined(NO_CUSTOM_LEVELS)
|
#if !defined(NO_CUSTOM_LEVELS)
|
||||||
extern editorclass ed;
|
extern editorclass ed;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
mapclass::mapclass()
|
mapclass::mapclass()
|
||||||
@@ -1312,7 +1312,7 @@ void mapclass::loadlevel(int rx, int ry)
|
|||||||
switch(t)
|
switch(t)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
#if !defined(MAKEANDPLAY)
|
#if !defined(MAKEANDPLAY)
|
||||||
case 1: //World Map
|
case 1: //World Map
|
||||||
tileset = 1;
|
tileset = 1;
|
||||||
extrarow = 1;
|
extrarow = 1;
|
||||||
@@ -1571,7 +1571,7 @@ void mapclass::loadlevel(int rx, int ry)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if !defined(NO_CUSTOM_LEVELS)
|
#if !defined(NO_CUSTOM_LEVELS)
|
||||||
case 12: //Custom level
|
case 12: //Custom level
|
||||||
int curlevel=(rx-100)+((ry-100)*ed.maxwidth);
|
int curlevel=(rx-100)+((ry-100)*ed.maxwidth);
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
#include "editor.h"
|
#include "editor.h"
|
||||||
|
|
||||||
#if !defined(NO_CUSTOM_LEVELS)
|
#if !defined(NO_CUSTOM_LEVELS)
|
||||||
extern editorclass ed;
|
extern editorclass ed;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class mapclass
|
class mapclass
|
||||||
|
|||||||
Reference in New Issue
Block a user