Blob Blame History Raw
--- quake3-1.34-rc4/code/qcommon/files.c~	2008-01-11 17:11:00.000000000 +0100
+++ quake3-1.34-rc4/code/qcommon/files.c	2008-01-11 17:11:00.000000000 +0100
@@ -2903,6 +2903,13 @@ static void FS_CheckPak0( void )
 	searchpath_t	*path;
 	qboolean founddemo = qfalse;
 	unsigned foundPak = 0;
+	
+	/* A bit hacky, but we don't want to complain about pak0 when running
+	   totalconversions, so skip the check for known total conversions */
+	if (		!strcmp(fs_gamedirvar->string, "baseoa") ||
+			!strcmp(fs_gamedirvar->string, "q3ut4") ||
+			!strcmp(fs_gamedirvar->string, "wop"))
+		return;
 
 	for( path = fs_searchpaths; path; path = path->next ) {
 		const char* pakBasename = path->pack->pakBasename;