blob: aa1447def93dd94caa9e31ec2d4b6c6a74700ae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Index: gemrb/plugins/Core/Interface.cpp
===================================================================
--- gemrb/plugins/Core/Interface.cpp (revision 5788)
+++ gemrb/plugins/Core/Interface.cpp (working copy)
@@ -1944,6 +1944,7 @@
strncpy( GameDataPath, value, sizeof(GameDataPath) );
} else if (stricmp( name, "GameOverridePath" ) == 0) {
strncpy( GameOverridePath, value, sizeof(GameOverridePath) );
+ ResolveFilePath( GameOverridePath );
} else if (stricmp( name, "GemRBOverridePath" ) == 0) {
strncpy( GemRBOverridePath, value, sizeof(GemRBOverridePath) );
} else if (stricmp( name, "GameScriptsPath" ) == 0) {
|