Change name of variable

This commit is contained in:
BlauFx 2022-12-28 15:02:44 +01:00
parent c6da7248ba
commit d63be3ff17

View File

@ -136,10 +136,10 @@ namespace osu.Game.Overlays.FirstRunSetup
copyInformation.Text = "Lightweight linking of files is not supported on your operating system yet, so a copy of all files will be made during import."; copyInformation.Text = "Lightweight linking of files is not supported on your operating system yet, so a copy of all files will be made during import.";
else else
{ {
string mentionNTFS = RuntimeInfo.OS == RuntimeInfo.Platform.Windows ? " (and the file system is NTFS)." : "."; string mentionNtfs = RuntimeInfo.OS == RuntimeInfo.Platform.Windows ? " (and the file system is NTFS)." : ".";
copyInformation.Text = copyInformation.Text =
$"A second copy of all files will be made during import. To avoid this, please make sure the lazer data folder is on the same drive as your previous osu! install{mentionNTFS}"; $"A second copy of all files will be made during import. To avoid this, please make sure the lazer data folder is on the same drive as your previous osu! install{mentionNtfs}";
copyInformation.AddLink(GeneralSettingsStrings.ChangeFolderLocation, () => copyInformation.AddLink(GeneralSettingsStrings.ChangeFolderLocation, () =>
{ {
game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen())); game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()));