]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
made id_pointer fields of rcachearrayrequest_t const (because they'll never be used...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 24 May 2003 14:48:33 +0000 (14:48 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 24 May 2003 14:48:33 +0000 (14:48 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3026 d7cf8633-e32d-0410-b094-e92efae38249

gl_backend.h

index 76f40bf5aa425fdd4212c7c1a5f9b43722f2abd4..edcd19cdd874b28f941a74d048187f2278241e26 100644 (file)
@@ -104,9 +104,9 @@ typedef struct rcachearrayrequest_s
        // for use by the code that is requesting the array, these are not
        // directly used but merely compared to determine if cache items are
        // identical
-       void *id_pointer1;
-       void *id_pointer2;
-       void *id_pointer3;
+       const void *id_pointer1;
+       const void *id_pointer2;
+       const void *id_pointer3;
        int id_number1;
        int id_number2;
        int id_number3;