]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
-Fixed a "bug" in PRVM_iscachedpic - it always returned true and thus no
authorblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 19 Dec 2004 22:55:00 +0000 (22:55 +0000)
committerblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 19 Dec 2004 22:55:00 +0000 (22:55 +0000)
 images were precached (now it always returns false and the menu halts for
 ~4 seconds after starting)

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4871 d7cf8633-e32d-0410-b094-e92efae38249

prvm_cmds.c

index 341380d28f754bc7760f0067f281e75a99ce27ae..cad16a48cf21ed978763549fd89f01ab8666760b 100644 (file)
@@ -2532,7 +2532,7 @@ void VM_iscachedpic(void)
        VM_SAFEPARMCOUNT(1,VM_iscachedpic);
 
        // drawq hasnt such a function, thus always return true 
-       PRVM_G_FLOAT(OFS_RETURN) = TRUE;
+       PRVM_G_FLOAT(OFS_RETURN) = false;
 }
 
 /*