diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-30 17:36:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-30 17:36:07 +0300 |
commit | 9e9a269cc0548f017b756f4158c957fb1edb894f (patch) | |
tree | 22b42db764d61b3c4bcdce0886f6e54415d37a16 /src/enums | |
parent | f8b6f8cbb252054404b2716960972669f4047a9f (diff) | |
download | plus-9e9a269cc0548f017b756f4158c957fb1edb894f.tar.gz plus-9e9a269cc0548f017b756f4158c957fb1edb894f.tar.bz2 plus-9e9a269cc0548f017b756f4158c957fb1edb894f.tar.xz plus-9e9a269cc0548f017b756f4158c957fb1edb894f.zip |
Fix possible issue with MapType::DEBUG
Renamed to MapType::DEBUGTYPE
Diffstat (limited to 'src/enums')
-rw-r--r-- | src/enums/resources/map/maptype.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/enums/resources/map/maptype.h b/src/enums/resources/map/maptype.h index 2b2d116ce..a5cab16f0 100644 --- a/src/enums/resources/map/maptype.h +++ b/src/enums/resources/map/maptype.h @@ -27,12 +27,12 @@ enumStart(MapType) { - NORMAL = 0, - DEBUG = 1, - SPECIAL = 2, - SPECIAL2 = 3, - SPECIAL3 = 4, - SPECIAL4 = 5, + NORMAL = 0, + DEBUGTYPE = 1, + SPECIAL = 2, + SPECIAL2 = 3, + SPECIAL3 = 4, + SPECIAL4 = 5, BLACKWHITE = 6 } enumEnd(MapType); |