From 4994a7ef6fc0930eba417781cdf52337517a3d5b Mon Sep 17 00:00:00 2001 From: mittorn Date: Tue, 25 Feb 2020 19:08:17 +0700 Subject: [PATCH] ref_gl: fix build --- ref_gl/gl_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref_gl/gl_context.c b/ref_gl/gl_context.c index 7f5b5714..7581d648 100644 --- a/ref_gl/gl_context.c +++ b/ref_gl/gl_context.c @@ -338,7 +338,7 @@ static void* GAME_EXPORT R_GetProcAddress( const char *name ) extern void *gl4es_GetProcAddress( const char *name ); return gl4es_GetProcAddress( name ); #else // TODO: other wrappers - return gEngFuncs.GL_GetProcAddress( name ); + return gEngfuncs.GL_GetProcAddress( name ); #endif }