fix NRE on startup for EmuClientApi, this is a band-aid, I think _emulator should never be null

This commit is contained in:
adelikat 2020-06-11 17:48:41 -05:00
parent f1818e7f7e
commit 109ba1d31a
1 changed files with 1 additions and 1 deletions

View File

@ -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