Resolve a code style warning in `HuC6280`

This commit is contained in:
YoshiRulz 2025-03-13 07:16:29 +10:00
parent abc6900c72
commit 6cedcc2221
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

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