From 16681653b4d32566564c357af3fa363acac9197b Mon Sep 17 00:00:00 2001 From: Tatsuya79 Date: Tue, 12 Mar 2019 22:32:47 +0100 Subject: [PATCH] glcore, fix rotation --- gfx/drivers/gl_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers/gl_core.c b/gfx/drivers/gl_core.c index ec3b9eba0f..140964cb6c 100644 --- a/gfx/drivers/gl_core.c +++ b/gfx/drivers/gl_core.c @@ -1386,7 +1386,7 @@ static void gl_core_set_rotation(void *data, unsigned rotation) if (!gl) return; - gl->rotation = 90 * rotation; + gl->rotation = 270 * rotation; gl_core_set_projection(gl, &gl_core_default_ortho, true); }