what is shadow going to do about this

This commit is contained in:
kalaposfos13 2026-03-12 22:21:25 +01:00
parent badaa30cbc
commit 0cc0dc9c31
2 changed files with 3 additions and 3 deletions

View File

@ -278,7 +278,7 @@ bool EmulatorSettingsImpl::Save(const std::string& serial) {
LOG_ERROR(EmuSettings, "Failed to open game config for writing: {}", path.string());
return false;
}
out << std::setw(4) << j;
out << std::setw(2) << j;
return !out.fail();
} else {
@ -319,7 +319,7 @@ bool EmulatorSettingsImpl::Save(const std::string& serial) {
LOG_ERROR(EmuSettings, "Failed to open config for writing: {}", path.string());
return false;
}
out << std::setw(4) << existing;
out << std::setw(2) << existing;
return !out.fail();
}
} catch (const std::exception& e) {

View File

@ -47,7 +47,7 @@ bool UserSettingsImpl::Save() const {
LOG_ERROR(EmuSettings, "Failed to open user settings for writing: {}", path.string());
return false;
}
out << std::setw(4) << j;
out << std::setw(2) << j;
return !out.fail();
} catch (const std::exception& e) {
LOG_ERROR(EmuSettings, "Error saving user settings: {}", e.what());