From: havoc Date: Sat, 24 May 2003 14:48:33 +0000 (+0000) Subject: made id_pointer fields of rcachearrayrequest_t const (because they'll never be used... X-Git-Tag: xonotic-v0.1.0preview~6626 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4596c46213ae652af1b2e4bc6b691076cff2c416;p=xonotic%2Fdarkplaces.git made id_pointer fields of rcachearrayrequest_t const (because they'll never be used as pointers anyway) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3026 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/gl_backend.h b/gl_backend.h index 76f40bf5..edcd19cd 100644 --- a/gl_backend.h +++ b/gl_backend.h @@ -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;