From 0b926373ceac07b51fe062ae901225b9bb220706 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 9 Feb 2015 02:03:41 +0100 Subject: [PATCH] (GLX) Buildfix --- gfx/drivers_context/glx_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers_context/glx_ctx.c b/gfx/drivers_context/glx_ctx.c index 0270ea7e65..f4609f4270 100644 --- a/gfx/drivers_context/glx_ctx.c +++ b/gfx/drivers_context/glx_ctx.c @@ -692,7 +692,7 @@ static void gfx_ctx_glx_make_current_context(void *data) if (glx) glXMakeContextCurrent(glx->g_dpy, glx->g_glx_win, - glx->g_glx_win, glx->g_use_hw_ctx ? glx->g_hw_ctx : glx_g_ctx); + glx->g_glx_win, glx->g_use_hw_ctx ? glx->g_hw_ctx : glx->g_ctx); } static bool gfx_ctx_glx_bind_api(void *data, enum gfx_ctx_api api,