From 3797cf803802b4c026f90306ecd379f1e2a17298 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 31 Jul 2006 22:15:39 +0000 Subject: (svn r5685) - Codechange: s/FiosCheckFileExists/FioCheckFileExists/ to unify the naming of these functions. --- fileio.c | 2 +- fileio.h | 2 +- newgrf.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fileio.c b/fileio.c index 4d2e800cc..704b64330 100644 --- a/fileio.c +++ b/fileio.c @@ -103,7 +103,7 @@ void FioCloseAll(void) FioCloseFile(i); } -bool FiosCheckFileExists(const char *filename) +bool FioCheckFileExists(const char *filename) { FILE *f; char buf[MAX_PATH]; diff --git a/fileio.h b/fileio.h index 926c986be..6ee58b32c 100644 --- a/fileio.h +++ b/fileio.h @@ -14,6 +14,6 @@ FILE *FioFOpenFile(const char *filename); void FioOpenFile(int slot, const char *filename); void FioReadBlock(void *ptr, uint size); void FioSkipBytes(int n); -bool FiosCheckFileExists(const char *filename); +bool FioCheckFileExists(const char *filename); #endif /* FILEIO_H */ diff --git a/newgrf.c b/newgrf.c index b1cd9a20c..0cd835ac2 100644 --- a/newgrf.c +++ b/newgrf.c @@ -2996,7 +2996,7 @@ void LoadNewGRF(uint load_index, uint file_index) _cur_stage = stage; _cur_spriteid = load_index; for (c = _first_grfconfig; c != NULL; c = c->next) { - if (!FiosCheckFileExists(c->filename)) { + if (!FioCheckFileExists(c->filename)) { // TODO: usrerror() error("NewGRF file missing: %s", c->filename); } -- cgit v1.2.3-54-g00ecf