(svn r1840) Repel str_buffr and use local buffers where possible

This commit is contained in:
tron
2005-02-07 12:32:35 +00:00
parent f8d97a5f61
commit b1baa4ed8b
7 changed files with 35 additions and 30 deletions

3
os2.c
View File

@@ -405,7 +405,8 @@ void FiosMakeSavegameName(char *buf, const char *name)
void FiosDelete(const char *name)
{
char *path = str_buffr;
char path[512];
FiosMakeSavegameName(path, name);
unlink(path);
}