From 5c84c94a1200daeb5b6016b8504002a6a7e3bee3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 20 Mar 2020 21:05:44 -0500 Subject: [PATCH] fix compile error in debug mode, oops --- .../Consoles/Nintendo/NES/NES.BoardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.BoardSystem.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.BoardSystem.cs index 4b1e6da7d3..305b52e103 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.BoardSystem.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.BoardSystem.cs @@ -125,7 +125,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { #if DEBUG if (ret != null) - throw new Exception($"Boards {ret} and {type} both responded to {nameof(NESBoardBase.Configure)}!"); + throw new Exception($"Boards {ret} and {type} both responded to {nameof(NesBoardBase.Configure)}!"); ret = type; #else return type;