CPU: Fix disassembly of GTE instructions in log

This commit is contained in:
Stenzek 2025-03-06 22:37:27 +10:00
parent b230c9c639
commit 78bb14bd23
No known key found for this signature in database

View File

@ -555,7 +555,7 @@ void CPU::FormatGTEInstruction(SmallStringBase* dest, u32 pc, const Instruction
{
const GTE::Instruction gi{inst.bits};
const GTEInstructionTable& t = s_gte_instructions[gi.command];
dest->append(t.name);
dest->assign(t.name);
if (t.sf && gi.sf)
dest->append(" sf");