From b2799961bc03e322047220daccf1ebd29f730150 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 17 Jun 2007 20:09:05 +0000 Subject: (svn r10188) -Codechange: make it a little easier to load a savegame from the console: -g -g -g --- src/fileio.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fileio.cpp') diff --git a/src/fileio.cpp b/src/fileio.cpp index e79f54984..a3f4a89d6 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -279,7 +279,7 @@ FILE *FioFOpenFileSp(const char *filename, const char *mode, Searchpath sp, Subd FILE *f = NULL; char buf[MAX_PATH]; - if (subdir == BASE_DIR) { + if (subdir == NO_DIRECTORY) { ttd_strlcpy(buf, filename, lengthof(buf)); } else { snprintf(buf, lengthof(buf), "%s%s%s", _searchpaths[sp], _subdirs[subdir], filename); @@ -301,11 +301,11 @@ FILE *FioFOpenFile(const char *filename, const char *mode, Subdirectory subdir) FILE *f = NULL; Searchpath sp; - assert(subdir < NUM_SUBDIRS); + assert(subdir < NUM_SUBDIRS || subdir == NO_DIRECTORY); FOR_ALL_SEARCHPATHS(sp) { f = FioFOpenFileSp(filename, mode, sp, subdir); - if (f != NULL || subdir == 0) break; + if (f != NULL || subdir == NO_DIRECTORY) break; } return f; -- cgit v1.2.3-54-g00ecf