[quake3-commits] r1744 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Nov 9 08:50:48 EST 2009
Author: thilo
Date: 2009-11-09 08:50:48 -0500 (Mon, 09 Nov 2009)
New Revision: 1744
Modified:
trunk/code/qcommon/files.c
Log:
This is true always, anyways.
Modified: trunk/code/qcommon/files.c
===================================================================
--- trunk/code/qcommon/files.c 2009-11-09 12:23:03 UTC (rev 1743)
+++ trunk/code/qcommon/files.c 2009-11-09 13:50:48 UTC (rev 1744)
@@ -2832,7 +2832,7 @@
}
// check for additional base game so mods can be based upon other mods
- if ( fs_basegame->string[0] && !Q_stricmp( gameName, BASEGAME ) && Q_stricmp( fs_basegame->string, gameName ) ) {
+ if ( fs_basegame->string[0] && Q_stricmp( fs_basegame->string, gameName ) ) {
if (fs_basepath->string[0]) {
FS_AddGameDirectory(fs_basepath->string, fs_basegame->string);
}
@@ -2842,7 +2842,7 @@
}
// check for additional game folder for mods
- if ( fs_gamedirvar->string[0] && !Q_stricmp( gameName, BASEGAME ) && Q_stricmp( fs_gamedirvar->string, gameName ) ) {
+ if ( fs_gamedirvar->string[0] && Q_stricmp( fs_gamedirvar->string, gameName ) ) {
if (fs_basepath->string[0]) {
FS_AddGameDirectory(fs_basepath->string, fs_gamedirvar->string);
}
More information about the quake3-commits
mailing list