Improve missing firmware dialog readability
see comment here: https://github.com/TASEmulators/BizHawk/issues/3980#issuecomment-2269483563
This commit is contained in:
parent
8d4c29a64f
commit
cdd7ee1fea
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue