From 57e83cd494aff0694a774d2ceed7d350f35e134c Mon Sep 17 00:00:00 2001 From: black Date: Sun, 19 Dec 2004 22:55:00 +0000 Subject: [PATCH] -Fixed a "bug" in PRVM_iscachedpic - it always returned true and thus no 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prvm_cmds.c b/prvm_cmds.c index 341380d2..cad16a48 100644 --- a/prvm_cmds.c +++ b/prvm_cmds.c @@ -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; } /* -- 2.39.2