From db915888459efb46775299c84e0a78ffa23e6076 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 4 Apr 2007 12:03:10 +0000 Subject: (svn r9560) -Codechange: add support for multiple 'base' directories for newgrf searching. -Codechange: do not add duplicate files to the newgrf list. --- src/newgrf.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/newgrf.cpp') diff --git a/src/newgrf.cpp b/src/newgrf.cpp index d83634188..a2dd255cb 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -4305,7 +4305,7 @@ static void InitNewGRFFile(const GRFConfig *config, int sprite_offset) if (newfile == NULL) error ("Out of memory"); - newfile->filename = strdup(config->filename); + newfile->filename = strdup(config->full_path); newfile->sprite_offset = sprite_offset; /* Copy the initial parameter list */ @@ -4583,7 +4583,7 @@ static void DecodeSpecialSprite(uint num, GrfLoadingStage stage) void LoadNewGRFFile(GRFConfig *config, uint file_index, GrfLoadingStage stage) { - const char *filename = config->filename; + const char *filename = config->full_path; uint16 num; /* A .grf file is activated only if it was active when the game was @@ -4699,7 +4699,7 @@ void LoadNewGRF(uint load_index, uint file_index) if (c->status == GCS_DISABLED || c->status == GCS_NOT_FOUND) continue; /* @todo usererror() */ - if (!FioCheckFileExists(c->filename)) error("NewGRF file is missing '%s'", c->filename); + if (!FileExists(c->full_path)) error("NewGRF file is missing '%s'", c->filename); if (stage == GLS_LABELSCAN) InitNewGRFFile(c, _cur_spriteid); LoadNewGRFFile(c, slot++, stage); -- cgit v1.2.3-54-g00ecf