From 097d9bc13b2016fb3069e24e30639bb992c4daa4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 18 Jun 2017 19:43:55 +0200 Subject: [PATCH] (iOS) Buildfix --- gfx/drivers_context/cocoa_gl_ctx.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers_context/cocoa_gl_ctx.m b/gfx/drivers_context/cocoa_gl_ctx.m index a586c5335f..07c8c5b7e9 100644 --- a/gfx/drivers_context/cocoa_gl_ctx.m +++ b/gfx/drivers_context/cocoa_gl_ctx.m @@ -343,7 +343,7 @@ static bool cocoagl_gfx_ctx_set_video_mode(void *data, [g_context setView:g_view]; #else if (g_use_hw_ctx) - g_hw_ctx = [[EAGLContext alloc] initWithAPI:kEAGLrenderingAPIOpenGLES2]; + g_hw_ctx = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; g_context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; g_view.context = g_context; #endif