From 5fb73d8b81fbd1823a6c807714d6b3589e918a3b Mon Sep 17 00:00:00 2001 From: "Guillermo S. Romero" Date: Wed, 21 Oct 2009 17:56:26 +0000 Subject: Make compiler happy, remove doubtful non init usage. --- source/blender/gpu/intern/gpu_buffers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/gpu') diff --git a/source/blender/gpu/intern/gpu_buffers.c b/source/blender/gpu/intern/gpu_buffers.c index 2563f7977cc..9e164f46e4c 100644 --- a/source/blender/gpu/intern/gpu_buffers.c +++ b/source/blender/gpu/intern/gpu_buffers.c @@ -1168,7 +1168,7 @@ void GPU_color4_upload( DerivedMesh *dm, unsigned char *data ) void GPU_color_switch( int mode ) { if( mode ) { - if( !GLStates & GPU_BUFFER_COLOR_STATE ) + if( !(GLStates & GPU_BUFFER_COLOR_STATE) ) glEnableClientState( GL_COLOR_ARRAY ); GLStates |= GPU_BUFFER_COLOR_STATE; } -- cgit v1.2.3