Browse Source

Fixes save lag on Switch (#1499)

* Greatly improves saving speed on the Switch.

* Fixes build on non-switch platforms.
pull/1528/head
Christopher Leggett 6 months ago committed by GitHub
parent
commit
978b325a30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      soh/soh/SaveManager.cpp

9
soh/soh/SaveManager.cpp

@ -479,14 +479,21 @@ void SaveManager::SaveFile(int fileNum) { @@ -479,14 +479,21 @@ void SaveManager::SaveFile(int fileNum) {
section.second.second();
}
#ifdef __SWITCH__
const char* json_string = baseBlock.dump(4).c_str();
FILE* w = fopen(GetFileName(fileNum).c_str(), "w");
fwrite(json_string, sizeof(char), strlen(json_string), w);
fclose(w);
#else
std::ofstream output(GetFileName(fileNum));
#ifdef __WIIU__
alignas(0x40) char buffer[8192];
output.rdbuf()->pubsetbuf(buffer, sizeof(buffer));
#endif
output << std::setw(4) << baseBlock << std::endl;
#endif
InitMeta(fileNum);
}

Loading…
Cancel
Save