Fix syntax errors in interp. string

fixes 0e084eaef
This commit is contained in:
James Groom 2023-12-17 20:00:30 +10:00 committed by GitHub
parent 0e084eaefd
commit 7f21cbd029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -302,8 +302,9 @@ namespace BizHawk.Client.EmuHawk
using MsgBox dialog = new(
title: "This EmuHawk is privileged",
message: $"EmuHawk detected it {(OSTailoredCode.IsUnixHost ? "is running as root (Superuser)" : "has Administrator privileges")}.\n"
+ "Regularly using {(OSTailoredCode.IsUnixHost ? "Superuser" : "Administrator")} for things other than system administration makes it easier to hack you.\n"
+ "If you're certain, you may continue anyway (and without support). You'll find a flag \"{nameof(Config.SkipSuperuserPrivsCheck)}\" in the config file, which disables this warning.",
+ $"Regularly using {(OSTailoredCode.IsUnixHost ? "Superuser" : "Administrator")} for things other than system administration makes it easier to hack you.\n"
+ "If you're certain, you may continue anyway (and without support).\n"
+ $"You'll find a flag \"{nameof(Config.SkipSuperuserPrivsCheck)}\" in the config file, which disables this warning.",
boxIcon: MessageBoxIcon.Warning);
dialog.ShowDialog();
}