From 206ce62c540bba91784e05f4e3c23bc2e86841a4 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sat, 20 Apr 2024 13:50:24 -0400 Subject: [PATCH] Add a debug message for the SET_ROTATION callback --- runloop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/runloop.c b/runloop.c index f01fba07e8ee..635d245d5292 100644 --- a/runloop.c +++ b/runloop.c @@ -1903,6 +1903,7 @@ bool runloop_environment_cb(unsigned cmd, void *data) unsigned rotation = *(const unsigned*)data; bool video_allow_rotate = settings->bools.video_allow_rotate; + RARCH_DBG("[Environ]: SET_ROTATION: %u\n", rotation); if (sys_info) sys_info->core_requested_rotation = rotation;