From 8ef798ea5102cd56c1d9c15da95f6e3c791c1306 Mon Sep 17 00:00:00 2001 From: sonninnos <45124675+sonninnos@users.noreply.github.com> Date: Sat, 11 Jan 2025 03:51:48 +0200 Subject: [PATCH] Add human readable rotation logging (#17387) --- runloop.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runloop.c b/runloop.c index 0f34c0bec2..99c5a3304a 100644 --- a/runloop.c +++ b/runloop.c @@ -1879,9 +1879,11 @@ bool runloop_environment_cb(unsigned cmd, void *data) case RETRO_ENVIRONMENT_SET_ROTATION: { unsigned rotation = *(const unsigned*)data; + unsigned rotation_v[4] = {0, 90, 180, 270}; bool video_allow_rotate = settings->bools.video_allow_rotate; - RARCH_DBG("[Environ]: SET_ROTATION: %u\n", rotation); + RARCH_DBG("[Environ]: SET_ROTATION: \"%u\" (%u deg).\n", rotation, rotation_v[rotation % 4]); + if (sys_info) sys_info->core_requested_rotation = rotation;