Merge pull request #8455 from Tatsuya79/patch-1

glcore, fix rotation
This commit is contained in:
Twinaphex 2019-03-13 11:38:41 +01:00 committed by GitHub
commit 1a8b185c5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1390,7 +1390,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);
}