Change back the path reordering in C4Reloc.cpp

Mainly to avoid unexpected side effects this short before the release
Armin Burgmeier 2011-10-09 18:36:25 +02:00
parent ad79ece074
commit 326442474d
1 changed files with 5 additions and 1 deletions

View File

@ -37,10 +37,14 @@ void C4Reloc::Init()
AddPath(::Application.GetGameDataPath().getData());
#else
AddPath(Config.General.ExePath.getData());
#endif
AddPath(Config.General.UserDataPath);
#ifndef USE_COCOA
AddPath(Config.General.SystemDataPath);
#endif
AddPath(Config.General.UserDataPath);
}
bool C4Reloc::AddPath(const char* path)