From ee54b18b7c147c3d7b51d97654293cf78385fd63 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Feb 2005 03:16:15 +0000 Subject: [PATCH] fix gcc warnings --- stepmania/src/RageDisplay_OGL_Extensions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageDisplay_OGL_Extensions.cpp b/stepmania/src/RageDisplay_OGL_Extensions.cpp index ecdec9f199..edabb21e17 100644 --- a/stepmania/src/RageDisplay_OGL_Extensions.cpp +++ b/stepmania/src/RageDisplay_OGL_Extensions.cpp @@ -126,7 +126,7 @@ void GLExt_t::Load( LowLevelWindow *pWind ) F( glEnableVertexAttribArrayARB ), F( glDisableVertexAttribArrayARB ), F( glVertexAttribPointerARB ), - NULL + { NULL, NULL } }; if( !LoadAllOrNothing(funcs, pWind) ) @@ -139,7 +139,7 @@ void GLExt_t::Load( LowLevelWindow *pWind ) func_t funcs[] = { F( glBindAttribLocationARB ), - NULL + { NULL, NULL } }; if( !LoadAllOrNothing(funcs, pWind) ) m_bGL_ARB_vertex_shader = false;