Update player loader screen mouse disable text to use localised version

This commit is contained in:
Dean Herbert 2022-01-05 18:29:09 +09:00
parent 93bcebbcd5
commit df6a755c36
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Localisation;
namespace osu.Game.Screens.Play.PlayerSettings
{
@ -18,7 +19,7 @@ public InputSettings()
{
mouseButtonsCheckbox = new PlayerCheckbox
{
LabelText = "Disable mouse buttons"
LabelText = MouseSettingsStrings.DisableMouseButtons
}
};
}