Change wording of missing firmware warning

This commit is contained in:
YoshiRulz 2023-03-17 06:32:59 +10:00
parent 7c3e35f3e7
commit 39fda0fa17
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 5 additions and 6 deletions

View File

@ -3688,12 +3688,11 @@ namespace BizHawk.Client.EmuHawk
{
if (e.Type == RomLoader.LoadErrorType.MissingFirmware)
{
var result = ShowMessageBox2(
owner: null,
"You are missing the needed firmware files to load this Rom\n\nWould you like to open the firmware manager now and configure your firmwares?",
e.Message,
EMsgBoxIcon.Error);
if (result)
if (this.ShowMessageBox2(
caption: e.Message,
icon: EMsgBoxIcon.Error,
text: "The core needs certain firmware to load this rom.\n\nOpen the firmware manager now?",
useOKCancel: true))
{
FirmwaresMenuItem_Click(null, e);
if (e.Retry)