Improve missing firmware dialog readability

see comment here: https://github.com/TASEmulators/BizHawk/issues/3980#issuecomment-2269483563
This commit is contained in:
Morilli 2024-08-20 23:09:16 +02:00
parent 8d4c29a64f
commit cdd7ee1fea
1 changed files with 2 additions and 2 deletions

View File

@ -3499,9 +3499,9 @@ namespace BizHawk.Client.EmuHawk
if (e.Type == RomLoader.LoadErrorType.MissingFirmware)
{
if (this.ShowMessageBox2(
caption: e.Message,
caption: "Missing Firmware!",
icon: EMsgBoxIcon.Error,
text: "The core needs certain firmware to load this rom.\n\nOpen the firmware manager now?",
text: $"{e.Message}\n\nOpen the firmware manager now?",
useOKCancel: true))
{
OpenFWConfigRomLoadFailed(e);