Show warning for linux as well

This commit is contained in:
Dean Herbert
2021-07-26 17:24:43 +09:00
parent b70bd7689e
commit 075507648a
2 changed files with 4 additions and 4 deletions

View File

@ -113,10 +113,10 @@ namespace osu.Game.Overlays.Settings.Sections.Input
highPrecisionMouse.Current.BindValueChanged(highPrecision =>
{
if (RuntimeInfo.OS == RuntimeInfo.Platform.macOS)
if (RuntimeInfo.OS != RuntimeInfo.Platform.Windows)
{
if (highPrecision.NewValue)
highPrecisionMouse.WarningText = MouseSettingsStrings.HighPrecisionMacOSWarning;
highPrecisionMouse.WarningText = MouseSettingsStrings.HighPrecisionPlatformWarning;
else
highPrecisionMouse.WarningText = null;
}