From 7ebe69a3b2a9686c86eff50bff8c4296c90e7aec Mon Sep 17 00:00:00 2001 From: iota97 Date: Sat, 30 Apr 2022 09:59:17 +0200 Subject: [PATCH] Allow to set InternalScreenRotation per game --- Core/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 915acc82dfad..81c0be55b886 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -576,7 +576,7 @@ static ConfigSetting generalSettings[] = { #ifdef __ANDROID__ ConfigSetting("ScreenRotation", &g_Config.iScreenRotation, ROTATION_AUTO_HORIZONTAL), #endif - ConfigSetting("InternalScreenRotation", &g_Config.iInternalScreenRotation, ROTATION_LOCKED_HORIZONTAL), + ConfigSetting("InternalScreenRotation", &g_Config.iInternalScreenRotation, ROTATION_LOCKED_HORIZONTAL, true, true), ConfigSetting("BackgroundAnimation", &g_Config.iBackgroundAnimation, 1, true, false), ConfigSetting("UITint", &g_Config.fUITint, 0.0, true, false),