aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Savestate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Savestate.cpp b/src/Savestate.cpp
index bd63564..1af2694 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
+}