diff --git a/Adventures in Lestoria/TMXParser.h b/Adventures in Lestoria/TMXParser.h index 37312c86..9acf9cf3 100644 --- a/Adventures in Lestoria/TMXParser.h +++ b/Adventures in Lestoria/TMXParser.h @@ -151,7 +151,7 @@ public: const std::string_view GetMapDisplayName()const; const bool HasMoreSpawns()const; //Returns whether or not there are more spawns for the spawn controller. const int Spawn_pop(); //Grabs the next spawn controller ID and removes it from the stack. - const Renderable const*GetOptimizedMap()const; + const Renderable*const GetOptimizedMap()const; std::string FormatLayerData(std::ostream& os, std::vectortiles); std::string FormatSpawnerData(std::ostream& os, std::maptiles); friend std::ostream& operator << (std::ostream& os, Map& rhs); @@ -328,7 +328,7 @@ class TMXParser{ spawnControllerIDs.value().pop(); return nextSpawnId; } - const Renderable const*Map::GetOptimizedMap()const{ + const Renderable*const Map::GetOptimizedMap()const{ return optimizedTile; } NPCData::NPCData(){} diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 21c89221..3cd49e73 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 1 #define VERSION_MINOR 2 #define VERSION_PATCH 3 -#define VERSION_BUILD 9665 +#define VERSION_BUILD 9666 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index 9cb873e5..a49e0301 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ