early-access version 1681

This commit is contained in:
pineappleEA
2021-05-14 06:07:23 +02:00
parent b195744abc
commit e076db528d
12 changed files with 198 additions and 281 deletions

View File

@@ -49,8 +49,7 @@ bool Config::LoadINI(const std::string& default_contents, bool retry) {
void(FS::CreateParentDir(sdl2_config_loc));
void(FS::WriteStringToFile(sdl2_config_loc, FS::FileType::TextFile, default_contents));
sdl2_config =
std::make_unique<INIReader>(FS::PathToUTF8String(sdl2_config_loc)); // Reopen file
sdl2_config = std::make_unique<INIReader>(FS::PathToUTF8String(sdl2_config_loc));
return LoadINI(default_contents, false);
}