]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a double typo (thanks Willis)
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 16 Mar 2007 00:36:27 +0000 (00:36 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 16 Mar 2007 00:36:27 +0000 (00:36 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6987 d7cf8633-e32d-0410-b094-e92efae38249

vid_agl.c

index a6e00a62b80880131bb0f7c5c9c7978aca34b772..082816a59fbc63676d2f105f5eb8e577d4eeae0f 100644 (file)
--- a/vid_agl.c
+++ b/vid_agl.c
@@ -161,7 +161,7 @@ void VID_Finish (qboolean allowmousegrab)
                        if (err == kCGLNoError)
                                multithreadedgl = true;
                        else
-                               Cvar_SetQuickValue(&apple_multithreadedgl, 0);
+                               Cvar_SetValueQuick(&apple_multithreadedgl, 0);
                }
        }
        else
@@ -174,7 +174,7 @@ void VID_Finish (qboolean allowmousegrab)
        }
 #else
        if (apple_multithreadedgl.integer)
-               Cvar_SetQuickValue(&apple_multithreadedgl, 0);
+               Cvar_SetValueQuick(&apple_multithreadedgl, 0);
 #endif
 }