From 78bb14bd23881d5db6ca100d5b94c8bcb1ea6b0a Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 6 Mar 2025 22:37:27 +1000 Subject: [PATCH] CPU: Fix disassembly of GTE instructions in log --- src/core/cpu_disasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/cpu_disasm.cpp b/src/core/cpu_disasm.cpp index 9f856599c..0c389c181 100644 --- a/src/core/cpu_disasm.cpp +++ b/src/core/cpu_disasm.cpp @@ -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");