From b98ea0a32188a3f45f2cd9341ccc74f7ee3a6b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Fri, 24 Oct 2014 22:42:28 -0300 Subject: [PATCH] (sdl_gl) Build fix for the SDL1 codepath --- gfx/context/sdl_gl_ctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/context/sdl_gl_ctx.c b/gfx/context/sdl_gl_ctx.c index ac7f4bac3e..901ed5d573 100644 --- a/gfx/context/sdl_gl_ctx.c +++ b/gfx/context/sdl_gl_ctx.c @@ -327,9 +327,9 @@ static void sdl_ctx_check_window(void *data, bool *quit, bool *resize,unsigned * } #else case SDL_VIDEORESIZE: - g_resized = true; - g_new_width = event.resize.w; - g_new_height = event.resize.h; + sdl->g_resized = true; + sdl->g_new_width = event.resize.w; + sdl->g_new_height = event.resize.h; #endif break; default: