Merge pull request #4216 from barbudreadmon/patch-2

Fix for issue #4165
This commit is contained in:
Twinaphex 2016-12-11 11:02:08 +01:00 committed by GitHub
commit d8acba1fa8

View File

@ -1282,7 +1282,7 @@ static void vulkan_set_rotation(void *data, unsigned rotation)
if (!vk)
return;
vk->rotation = 90 * rotation;
vk->rotation = 270 * rotation;
vulkan_set_projection(vk, &ortho, true);
}