Change default orientation to SensorLandscape

This commit is contained in:
Susko3
2022-02-01 12:43:58 +01:00
parent 2c0c44a950
commit bfe6218ed5
2 changed files with 4 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Android
{
gameActivity.RunOnUiThread(() =>
{
gameActivity.RequestedOrientation = userPlaying.NewValue ? ScreenOrientation.Locked : ScreenOrientation.FullUser;
gameActivity.RequestedOrientation = userPlaying.NewValue ? ScreenOrientation.Locked : OsuGameActivity.DEFAULT_ORIENTATION;
});
}
}