# HG changeset patch # User Sam Lantinga # Date 1153811680 0 # Node ID 861893943d53fbd02dbe51f2b6cc2d90995d9b4d # Parent 05e88d266921b2bd4479d5987e9fa2456f89e1d2 Actually use the function we took the trouble to get the pointer for. diff -r 05e88d266921 -r 861893943d53 src/video/SDL_video.c --- a/src/video/SDL_video.c Tue Jul 25 06:59:14 2006 +0000 +++ b/src/video/SDL_video.c Tue Jul 25 07:14:40 2006 +0000 @@ -2261,13 +2261,13 @@ GLint component; /* there doesn't seem to be a single flag in OpenGL for this! */ - glGetIntegerv(GL_RED_BITS, &component); + glGetIntegervFunc(GL_RED_BITS, &component); bits += component; - glGetIntegerv(GL_GREEN_BITS, &component); + glGetIntegervFunc(GL_GREEN_BITS, &component); bits += component; - glGetIntegerv(GL_BLUE_BITS, &component); + glGetIntegervFunc(GL_BLUE_BITS, &component); bits += component; - glGetIntegerv(GL_ALPHA_BITS, &component); + glGetIntegervFunc(GL_ALPHA_BITS, &component); bits += component; *value = bits; @@ -2284,7 +2284,7 @@ return -1; } - glGetIntegerv(attrib, (GLint *) value); + glGetIntegervFunc(attrib, (GLint *) value); return 0; #else SDL_Unsupported();