Skip to content

Commit 78bb14b

Browse files
committed
CPU: Fix disassembly of GTE instructions in log
1 parent b230c9c commit 78bb14b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/cpu_disasm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ void CPU::FormatGTEInstruction(SmallStringBase* dest, u32 pc, const Instruction
555555
{
556556
const GTE::Instruction gi{inst.bits};
557557
const GTEInstructionTable& t = s_gte_instructions[gi.command];
558-
dest->append(t.name);
558+
dest->assign(t.name);
559559

560560
if (t.sf && gi.sf)
561561
dest->append(" sf");

0 commit comments

Comments
 (0)