summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-07-31 22:15:39 +0000
committerDarkvater <darkvater@openttd.org>2006-07-31 22:15:39 +0000
commit7b95782c9de2460f491b1f62cbfa1b3bbafd81cd (patch)
tree3b7a496805b14738b8a8b816db82a0ea424631b3 /newgrf.c
parentcef563141a3f1bfe8d8f2bf5211598df57e4ec0f (diff)
downloadopenttd-7b95782c9de2460f491b1f62cbfa1b3bbafd81cd.tar.xz
(svn r5685) - Codechange: s/FiosCheckFileExists/FioCheckFileExists/ to unify the naming of these functions.
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c2
1 files changed, 1 insertions, 1 deletions
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);
}