Skip to content

Commit 39fda0f

Browse files
committed
Change wording of missing firmware warning
1 parent 7c3e35f commit 39fda0f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/BizHawk.Client.EmuHawk/MainForm.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3688,12 +3688,11 @@ private void ShowLoadError(object sender, RomLoader.RomErrorArgs e)
36883688
{
36893689
if (e.Type == RomLoader.LoadErrorType.MissingFirmware)
36903690
{
3691-
var result = ShowMessageBox2(
3692-
owner: null,
3693-
"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?",
3694-
e.Message,
3695-
EMsgBoxIcon.Error);
3696-
if (result)
3691+
if (this.ShowMessageBox2(
3692+
caption: e.Message,
3693+
icon: EMsgBoxIcon.Error,
3694+
text: "The core needs certain firmware to load this rom.\n\nOpen the firmware manager now?",
3695+
useOKCancel: true))
36973696
{
36983697
FirmwaresMenuItem_Click(null, e);
36993698
if (e.Retry)

0 commit comments

Comments
 (0)