diff options
Diffstat (limited to 'unix.c')
-rw-r--r-- | unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -334,7 +334,7 @@ void FiosDelete(const char *name) { char path[512]; - FiosMakeSavegameName(path, name); + snprintf(path, lengthof(path), "%s/%s", _fios_path, name); unlink(path); } |