diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index af07048c..a4f472a3 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -38,8 +38,8 @@ All rights reserved. #pragma once #define VERSION_MAJOR 1 #define VERSION_MINOR 2 -#define VERSION_PATCH 0 -#define VERSION_BUILD 8948 +#define VERSION_PATCH 1 +#define VERSION_BUILD 8951 #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 719d459f..0567d77b 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ