CDVD: Actually fix NVRAM open mode

This commit is contained in:
Stenzek 2024-06-15 12:16:10 +10:00 committed by Connor McLaughlin
parent a0d32d493c
commit 36f9715637
1 changed files with 7 additions and 3 deletions

View File

@ -197,11 +197,15 @@ void cdvdSaveNVRAM()
{
Error error;
const std::string nvmfile = cdvdGetNVRAMPath();
auto fp = FileSystem::OpenManagedCFile(nvmfile.c_str(), "wb", &error);
auto fp = FileSystem::OpenManagedCFile(nvmfile.c_str(), "r+b", &error);
if (!fp)
{
ERROR_LOG("Failed to open NVRAM at {} for updating: {}", Path::GetFileName(nvmfile), error.GetDescription());
return;
fp = FileSystem::OpenManagedCFile(nvmfile.c_str(), "w+b", &error);
if (!fp) [[unlikely]]
{
ERROR_LOG("Failed to open NVRAM at {} for updating: {}", Path::GetFileName(nvmfile), error.GetDescription());
return;
}
}
u8 existing_nvram[NVRAM_SIZE];