Merge branch 'master' of https://github.com/Arisotura/melonDS
This commit is contained in:
commit
7af5ff76ed
|
@ -52,7 +52,7 @@ Savestate::Savestate(const char* filename, bool save)
|
|||
if (save)
|
||||
{
|
||||
Saving = true;
|
||||
file = Platform::OpenFile(filename, "wb");
|
||||
file = Platform::OpenLocalFile(filename, "wb");
|
||||
if (!file)
|
||||
{
|
||||
printf("savestate: file %s doesn't exist\n", filename);
|
||||
|
@ -289,4 +289,4 @@ void Savestate::VarArray(void* data, u32 len)
|
|||
{
|
||||
fread(data, len, 1, file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue