From b488529a7bbfa2332268d36e0fe243a3f7cb20e1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 23 Apr 2017 13:30:57 -0500 Subject: [PATCH] Intellivision - debugger - fix flags to be boolean --- .../Intellivision/Intellivision.IDebuggable.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IDebuggable.cs index addf85d6df..972d08018f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IDebuggable.cs @@ -20,12 +20,12 @@ namespace BizHawk.Emulation.Cores.Intellivision ["R6"] = _cpu.Register[6], ["PC"] = _cpu.Register[7], - ["FlagS"] = _cpu.FlagS ? 1 : 0, - ["FlagC"] = _cpu.FlagC ? 1 : 0, - ["FlagZ"] = _cpu.FlagZ ? 1 : 0, - ["FlagO"] = _cpu.FlagO ? 1 : 0, - ["FlagI"] = _cpu.FlagI ? 1 : 0, - ["FlagD"] = _cpu.FlagD ? 1 : 0, + ["FlagS"] = _cpu.FlagS, + ["FlagC"] = _cpu.FlagC, + ["FlagZ"] = _cpu.FlagZ, + ["FlagO"] = _cpu.FlagO, + ["FlagI"] = _cpu.FlagI, + ["FlagD"] = _cpu.FlagD }; }