Remove trailing comma in vararg

This commit is contained in:
James Groom 2019-04-04 12:00:13 +10:00 committed by GitHub
parent b37ced84cb
commit 8f5ecdf157
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ namespace BizHawk.Emulation.Cores.Components.M6502
FlagD ? "D" : "d",
FlagI ? "I" : "i",
FlagZ ? "Z" : "z",
FlagC ? "C" : "c",
// !RDY ? "R" : "r",
FlagC ? "C" : "c"
// !RDY ? "R" : "r"
),
$"Cy:{TotalExecutedCycles}",
$"PPU-Cy:{ext_ppu_cycle}")