diff --git a/platforms/windows/AppPlatform_windows.cpp b/platforms/windows/AppPlatform_windows.cpp index 396ab92..cda1e6e 100644 --- a/platforms/windows/AppPlatform_windows.cpp +++ b/platforms/windows/AppPlatform_windows.cpp @@ -211,7 +211,7 @@ std::vector AppPlatform_windows::getOptionStrings() ss << str; std::string key, value; - if (std::getline(ss, key, '|') && std::getline(ss, value)) + if (std::getline(ss, key, ':') && std::getline(ss, value)) { o.push_back(key); o.push_back(value); @@ -230,7 +230,7 @@ void AppPlatform_windows::setOptionStrings(const std::vector& str) os << "#Config file for Minecraft PE. The # at the start denotes a comment, removing it makes it a command.\n\n"; for (int i = 0; i < int(str.size()); i += 2) - os << str[i] << '|' << str[i + 1] << '\n'; + os << str[i] << ':' << str[i + 1] << '\n'; } void AppPlatform_windows::setScreenSize(int width, int height) diff --git a/windows_vs/minecraftcpp.vcxproj.filters b/windows_vs/minecraftcpp.vcxproj.filters index 68016fe..d52d165 100644 --- a/windows_vs/minecraftcpp.vcxproj.filters +++ b/windows_vs/minecraftcpp.vcxproj.filters @@ -1964,6 +1964,9 @@ source\client\renderer + + source\client\renderer +