mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-08 12:35:48 +00:00
CPU: Fix disassembly of GTE instructions in log
This commit is contained in:
parent
b230c9c639
commit
78bb14bd23
@ -555,7 +555,7 @@ void CPU::FormatGTEInstruction(SmallStringBase* dest, u32 pc, const Instruction
|
|||||||
{
|
{
|
||||||
const GTE::Instruction gi{inst.bits};
|
const GTE::Instruction gi{inst.bits};
|
||||||
const GTEInstructionTable& t = s_gte_instructions[gi.command];
|
const GTEInstructionTable& t = s_gte_instructions[gi.command];
|
||||||
dest->append(t.name);
|
dest->assign(t.name);
|
||||||
|
|
||||||
if (t.sf && gi.sf)
|
if (t.sf && gi.sf)
|
||||||
dest->append(" sf");
|
dest->append(" sf");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user