summaryrefslogtreecommitdiff
path: root/os2.c
diff options
context:
space:
mode:
Diffstat (limited to 'os2.c')
-rw-r--r--os2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os2.c b/os2.c
index bbe26497f..eb86bdd44 100644
--- a/os2.c
+++ b/os2.c
@@ -403,7 +403,7 @@ void FiosDelete(const char *name)
{
char path[512];
- FiosMakeSavegameName(path, name);
+ snprintf(path, lengthof(path), "%s\\%s", _fios_path, name);
unlink(path);
}