diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2025-12-12 00:53:45 +0000 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2025-12-12 01:14:09 +0000 |
| commit | 1c157d1fc8b0ea2ca69fc2029c844c0cc5eb6db7 (patch) | |
| tree | ad4bf5d364de49c9ff3a04bb1977db683ac9de8e /Source/Core | |
| parent | 75bc9a474edab83c8751b73939a7136990c3c118 (diff) | |
GekkoDisassembler: fix conditional twi opcode
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/GekkoDisassembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/GekkoDisassembler.cpp b/Source/Core/Common/GekkoDisassembler.cpp index 18ed219e64..71217d6269 100644 --- a/Source/Core/Common/GekkoDisassembler.cpp +++ b/Source/Core/Common/GekkoDisassembler.cpp @@ -493,7 +493,7 @@ void GekkoDisassembler::trapi(u32 in, unsigned char dmode) if (cnd != nullptr) { - m_opcode = fmt::format("t{}{}", dmode ? 'd' : 'w', cnd); + m_opcode = fmt::format("t{}{}i", dmode ? 'd' : 'w', cnd); } else { |
