Fix android build failure due to enum rename

This commit is contained in:
Dean Herbert 2024-10-07 16:43:50 +09:00
parent 24d6ea5444
commit a41c6dce04
No known key found for this signature in database

View File

@ -12,7 +12,7 @@ namespace osu.Android
{ {
public partial class GameplayScreenRotationLocker : Component public partial class GameplayScreenRotationLocker : Component
{ {
private IBindable<LocalUserPlayingStates> localUserPlaying = null!; private IBindable<LocalUserPlayingState> localUserPlaying = null!;
[Resolved] [Resolved]
private OsuGameActivity gameActivity { get; set; } = null!; private OsuGameActivity gameActivity { get; set; } = null!;
@ -24,11 +24,11 @@ namespace osu.Android
localUserPlaying.BindValueChanged(updateLock, true); localUserPlaying.BindValueChanged(updateLock, true);
} }
private void updateLock(ValueChangedEvent<LocalUserPlayingStates> userPlaying) private void updateLock(ValueChangedEvent<LocalUserPlayingState> userPlaying)
{ {
gameActivity.RunOnUiThread(() => gameActivity.RunOnUiThread(() =>
{ {
gameActivity.RequestedOrientation = userPlaying.NewValue != LocalUserPlayingStates.NotPlaying ? ScreenOrientation.Locked : gameActivity.DefaultOrientation; gameActivity.RequestedOrientation = userPlaying.NewValue != LocalUserPlayingState.NotPlaying ? ScreenOrientation.Locked : gameActivity.DefaultOrientation;
}); });
} }
} }