diff --git a/Source/Core/Core/DSP/DSPCodeUtil.cpp b/Source/Core/Core/DSP/DSPCodeUtil.cpp index d196a5a5b5..074dd86c3a 100644 --- a/Source/Core/Core/DSP/DSPCodeUtil.cpp +++ b/Source/Core/Core/DSP/DSPCodeUtil.cpp @@ -115,7 +115,7 @@ bool Compare(const std::vector& code1, const std::vector& code2) u16 pc = i; std::string line; disassembler.DisassembleOpcode(longest, &pc, line); - fmt::print("!! {}\n", line); + fmt::print("!! {:04x} : {:04x} - {}\n", i, longest[i], line); } } fmt::print("Equal instruction words: {} / {}\n", count_equal, min_size);