From c104bc094b3e4e9b8b686ada83f46f2966d89ea5 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 May 2016 20:07:03 +0200 Subject: [PATCH] (QNX) Fix egl_create_surface call --- gfx/drivers_context/bbqnx_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers_context/bbqnx_ctx.c b/gfx/drivers_context/bbqnx_ctx.c index ae63759fd7..c9b5dca2ab 100644 --- a/gfx/drivers_context/bbqnx_ctx.c +++ b/gfx/drivers_context/bbqnx_ctx.c @@ -245,7 +245,7 @@ static void *gfx_ctx_qnx_init(void *video_driver) goto error; } - if (!egl_create_surface(qnx->screen_win)) + if (!egl_create_surface(&qnx->egl, qnx->screen_win)) goto error; return qnx;