fix NRE on startup for EmuClientApi, this is a band-aid, I think _emulator should never be null
This commit is contained in:
parent
f1818e7f7e
commit
109ba1d31a
|
@ -41,7 +41,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
get
|
||||
{
|
||||
switch (_emulator.SystemId)
|
||||
switch (_emulator?.SystemId)
|
||||
{
|
||||
case "PCE" when _emulator is PCEngine pceHawk:
|
||||
return pceHawk.Type switch
|
||||
|
|
Loading…
Reference in New Issue