From 0f8f8715811626cfa555b9072a0668c58e04dc1c Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Thu, 23 Feb 2023 13:22:28 +0100 Subject: [PATCH] (PS3) Update code to use flags --- gfx/drivers_context/ps3_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers_context/ps3_ctx.c b/gfx/drivers_context/ps3_ctx.c index 10f691e669..6641dc951e 100644 --- a/gfx/drivers_context/ps3_ctx.c +++ b/gfx/drivers_context/ps3_ctx.c @@ -155,7 +155,7 @@ static void gfx_ctx_ps3_check_window(void *data, bool *quit, if (ps3_api == GFX_CTX_OPENGL_API || ps3_api == GFX_CTX_OPENGL_ES_API) { gl2_t *gl = data; - if (gl->should_resize) + if (gl->flags & GL2_FLAG_SHOULD_RESIZE) *resize = true; } #endif