1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Russell Coker
Force the search path for datadir to include /usr/share/games/warzone2100/
because I can't figure out how to do it via CMake
Index: warzone2100-4.6.1/src/main.cpp
===================================================================
--- warzone2100-4.6.1.orig/src/main.cpp
+++ warzone2100-4.6.1/src/main.cpp
@@ -644,6 +644,8 @@ static void scanDataDirs()
}
}
#endif
+ // this is not the right solution.
+ registerSearchPath("/usr/share/games/warzone2100/", 5);
#ifdef WZ_OS_MAC
if (!PHYSFS_exists("gamedesc.lev"))
|