From e510e92d79c4722b3b741d47833837c9efff9250 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sat, 20 Apr 2024 08:05:26 -0400 Subject: [PATCH] remove-set-rotation-message (#16453) Whenever `SET_ROTATION` is called, it outputs an INFO message in the logs. Can get quite busy. I'm assuming this was here during someone's debugging? --- runloop.c | 1 - 1 file changed, 1 deletion(-) diff --git a/runloop.c b/runloop.c index f04c8ced66..f01fba07e8 100644 --- a/runloop.c +++ b/runloop.c @@ -1903,7 +1903,6 @@ bool runloop_environment_cb(unsigned cmd, void *data) unsigned rotation = *(const unsigned*)data; bool video_allow_rotate = settings->bools.video_allow_rotate; - RARCH_LOG("[Environ]: SET_ROTATION: %u\n", rotation); if (sys_info) sys_info->core_requested_rotation = rotation;