diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index e98d7705..d70bd58f 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 0 -#define VERSION_BUILD 9020 +#define VERSION_BUILD 9021 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/Adventures in Lestoria/VisualNovel.cpp b/Adventures in Lestoria/VisualNovel.cpp index 39a599f5..312c48f8 100644 --- a/Adventures in Lestoria/VisualNovel.cpp +++ b/Adventures in Lestoria/VisualNovel.cpp @@ -66,12 +66,12 @@ void VisualNovel::Initialize(){ std::string currentStory; while(file.good()){ - auto trim=[](std::string line){ - for(int counter=0;counterargs; size_t counter=0; @@ -86,7 +86,7 @@ void VisualNovel::Initialize(){ return args; }; std::getline(file,line); - line=trim(line); + trim(line); if(line.length()==0)continue; //It's a blank line, so we skip it. switch(line[0]){ diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index c0400463..3f970ea2 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ