From 1b35b75d4523f8c98198b8e441b89391fa41f21d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Mon, 31 Dec 2018 00:07:39 +0100 Subject: [PATCH] [ORBIS] Fix height / width typo --- gfx/drivers_context/orbis_ctx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/drivers_context/orbis_ctx.c b/gfx/drivers_context/orbis_ctx.c index 267d6caf83..e97529c6c9 100644 --- a/gfx/drivers_context/orbis_ctx.c +++ b/gfx/drivers_context/orbis_ctx.c @@ -150,8 +150,8 @@ static bool orbis_ctx_set_video_mode(void *data, orbis_ctx_data_t *ctx_orbis = (orbis_ctx_data_t *)data; - ctx_orbis->width = ATTR_ORBISGL_HEIGHT; - ctx_orbis->height = ATTR_ORBISGL_WIDTH; + ctx_orbis->width = ATTR_ORBISGL_WIDTH; + ctx_orbis->height = ATTR_ORBISGL_HEIGHT; ctx_orbis->native_window.width = ctx_orbis->width; ctx_orbis->native_window.height = ctx_orbis->height;