mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Revert part of r6bfb8c9597dc so new memory card files will be created.
some how I neglected to remember that r+ requires the file to exist.
still should fix the issue with 0 byte memory cards.
This reverts commit 6bfb8c9597
.
This commit is contained in:
@ -110,7 +110,7 @@ void innerFlush(FlushData* data)
|
||||
SplitPath(data->filename, &dir, 0, 0);
|
||||
if (!File::IsDirectory(dir))
|
||||
File::CreateFullPath(dir);
|
||||
pFile.Open(data->filename, "r+b");
|
||||
pFile.Open(data->filename, "wb");
|
||||
}
|
||||
|
||||
if (!pFile) // Note - pFile changed inside above if
|
||||
|
Reference in New Issue
Block a user