From 6cedcc2221b7f6f93a94d06ef310be209eb3ff8d Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 13 Mar 2025 07:16:29 +1000 Subject: [PATCH] Resolve a code style warning in `HuC6280` --- src/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs b/src/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs index ddecf3cd13..b0deab0f96 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs @@ -2337,8 +2337,8 @@ namespace BizHawk.Emulation.Cores.Components.H6280 PC += 6; break; case 0xF4: // SET - int a; // TODO remove these extra checks - string b = Disassemble(PC, out a); + //TODO remove these extra checks + string b = Disassemble(PC, out _); if (!b.StartsWithOrdinal("ADC") && !b.StartsWithOrdinal("EOR") && !b.StartsWithOrdinal("AND") && !b.StartsWithOrdinal("ORA")) Console.WriteLine("SETTING T FLAG, NEXT INSTRUCTION IS UNHANDLED: {0}", b); FlagT = true;