diff --git a/src/Savestate.cpp b/src/Savestate.cpp index bd635643..1af2694e 100644 --- a/src/Savestate.cpp +++ b/src/Savestate.cpp @@ -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); } -} \ No newline at end of file +}