Fix a null check exception when a GBA bios fails to load
This commit is contained in:
parent
7f3e01e3b3
commit
b4e3d864e3
BizHawk.MultiClient
|
@ -2443,7 +2443,7 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("Unable to find the required GBA BIOS file - \n" + gbabios, "Unable to load BIOS", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
MessageBox.Show("Unable to find the required GBA BIOS file - \n" + gbabiospath, "Unable to load BIOS", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
throw new Exception();
|
||||
}
|
||||
GBA gba = new GBA(nextComm);
|
||||
|
|
Loading…
Reference in New Issue