Skip to content

Commit d608aa7

Browse files
fix CS0234: use global:: prefix for Android.Content.Res.Configuration in OsuGameActivity.cs
Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/cbe1fe2e-478b-486a-b91a-8e76e0c928d0 Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com>
1 parent 4fbc996 commit d608aa7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

osu.Android/OsuGameActivity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ public void SurfaceDestroyed(ISurfaceHolder holder)
964964
}
965965
}
966966

967-
public override void OnConfigurationChanged(Android.Content.Res.Configuration newConfig)
967+
public override void OnConfigurationChanged(global::Android.Content.Res.Configuration newConfig)
968968
{
969969
base.OnConfigurationChanged(newConfig);
970970
bool wasDeX = IsDeX;
@@ -987,7 +987,7 @@ public override void OnConfigurationChanged(Android.Content.Res.Configuration ne
987987
}
988988
}
989989

990-
private void updateDeXStatus(Android.Content.Res.Configuration? config)
990+
private void updateDeXStatus(global::Android.Content.Res.Configuration? config)
991991
{
992992
bool wasDeX = IsDeX;
993993
IsDeX = (config ?? Resources?.Configuration)?.UiMode.HasFlag(UiMode.TypeDesk) ?? false;

0 commit comments

Comments
 (0)