diff options
Diffstat (limited to 'src/spriteloader/png.cpp')
-rw-r--r-- | src/spriteloader/png.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spriteloader/png.cpp b/src/spriteloader/png.cpp index a1a6aa4a1..d31184385 100644 --- a/src/spriteloader/png.cpp +++ b/src/spriteloader/png.cpp @@ -42,7 +42,7 @@ static bool OpenPNGFile(const char *filename, uint32 id, bool mask) /* Add path separator after 'sprites' if not present */ const char *sep = (filename[0] == PATHSEPCHAR) ? "" : PATHSEP; snprintf(png_file, sizeof(png_file), "sprites%s%s" PATHSEP "%d%s.png", sep, filename, id, mask ? "m" : ""); - if (FioCheckFileExists(png_file)) { + if (FioCheckFileExists(png_file, NEWGRF_DIR)) { FioOpenFile(PNG_SLOT, png_file, NEWGRF_DIR); return true; } |