From bc53b2bc6b9f464caafbc4d1826b3e25104ff1e5 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sat, 20 Apr 2024 17:38:13 -0400 Subject: [PATCH] Add a debug message for the SET_ROTATION callback (#16454) --- runloop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/runloop.c b/runloop.c index f01fba07e8..635d245d52 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;