]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
maybe it compiles now
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 5 Aug 2009 18:41:55 +0000 (18:41 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 5 Aug 2009 18:41:55 +0000 (18:41 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9097 d7cf8633-e32d-0410-b094-e92efae38249

vid_agl.c

index cffbe855d58770589b11aa0c20fd9af6a58e5de2..0c0fd7a7ede27754f5a3588f7d3a022518dd5764 100644 (file)
--- a/vid_agl.c
+++ b/vid_agl.c
@@ -1133,7 +1133,7 @@ static bool GetDictionaryBoolean(CFDictionaryRef d, const void *key)
 long GetDictionaryLong(CFDictionaryRef d, const void *key)
 {
        long value = 0;
-    CFBooleanRef ref = (CFBooleanRef) CFDictionaryGetValue(d, key);
+    CFNumberRef ref = (CFNumberRef) CFDictionaryGetValue(d, key);
     if(ref)
         CFNumberGetValue(ref, kCFNumberLongType, &value);
     return value;
@@ -1141,12 +1141,12 @@ long GetDictionaryLong(CFDictionaryRef d, const void *key)
 
 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount)
 {
+       CGDirectDisplayID mainDisplay = CGMainDisplayID();
        CFArrayRef vidmodes = CGDisplayAvailableModes(mainDisplay);
        CFDictionaryRef thismode;
        unsigned int n = CFArrayGetCount(vidmodes);
        unsigned int i;
        size_t k;
-       CGDirectDisplayID mainDisplay = CGMainDisplayID();
 
        k = 0;
        for(i = 0; i < n; ++i)