From 109ba1d31a133a193644355fcd9fde686eda383e Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 11 Jun 2020 17:48:41 -0500 Subject: [PATCH] fix NRE on startup for EmuClientApi, this is a band-aid, I think _emulator should never be null --- src/BizHawk.Client.EmuHawk/Api/Libraries/EmuClientApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/Api/Libraries/EmuClientApi.cs b/src/BizHawk.Client.EmuHawk/Api/Libraries/EmuClientApi.cs index af1fd126f6..df4397843f 100644 --- a/src/BizHawk.Client.EmuHawk/Api/Libraries/EmuClientApi.cs +++ b/src/BizHawk.Client.EmuHawk/Api/Libraries/EmuClientApi.cs @@ -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