Change wording of missing firmware warning
This commit is contained in:
parent
7c3e35f3e7
commit
39fda0fa17
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue