From 39fda0fa17f23702b467c62f4b0fd65caca95b2f Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 17 Mar 2023 06:32:59 +1000 Subject: [PATCH] Change wording of missing firmware warning --- src/BizHawk.Client.EmuHawk/MainForm.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index d67d2398bb..a6b99c0eb8 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -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)