mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Android: Default screen rotation to auto landscape for new users. Fixes #11832
This commit is contained in:
parent
4c83d30b59
commit
172bcbbf47
@ -431,7 +431,7 @@ static ConfigSetting generalSettings[] = {
|
||||
ConfigSetting("RemoteDebuggerOnStartup", &g_Config.bRemoteDebuggerOnStartup, false),
|
||||
|
||||
#ifdef __ANDROID__
|
||||
ConfigSetting("ScreenRotation", &g_Config.iScreenRotation, ROTATION_LOCKED_HORIZONTAL),
|
||||
ConfigSetting("ScreenRotation", &g_Config.iScreenRotation, ROTATION_AUTO_HORIZONTAL),
|
||||
#endif
|
||||
ConfigSetting("InternalScreenRotation", &g_Config.iInternalScreenRotation, ROTATION_LOCKED_HORIZONTAL),
|
||||
|
||||
|
@ -37,6 +37,7 @@ enum {
|
||||
ROTATION_LOCKED_VERTICAL = 2,
|
||||
ROTATION_LOCKED_HORIZONTAL180 = 3,
|
||||
ROTATION_LOCKED_VERTICAL180 = 4,
|
||||
ROTATION_AUTO_HORIZONTAL = 5,
|
||||
};
|
||||
|
||||
enum BufferFilter {
|
||||
|
Loading…
Reference in New Issue
Block a user