(svn r22827) -Codechange: pass the/a more proper sub directory when opening (some) files instead of the default one

This commit is contained in:
rubidium
2011-08-24 13:53:34 +00:00
parent 8e5f433b22
commit b4edc30c64
5 changed files with 8 additions and 8 deletions

View File

@@ -599,7 +599,7 @@ public:
/* virtual */ bool AddFile(const char *filename, size_t basepath_length)
{
FILE *f = FioFOpenFile(filename, "r");
FILE *f = FioFOpenFile(filename, "r", SCENARIO_DIR);
if (f == NULL) return false;
ScenarioIdentifier id;