From 281c5e4c66a6b73ae2b8248f2482c265b2d676c9 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Wed, 21 Oct 2015 20:41:40 +0200 Subject: [PATCH] Properly swap the argument of the good option AKA: redo commit d7afd7aae0 with the eye open... --- pcsx2/DebugTools/DisR5900asm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/DebugTools/DisR5900asm.cpp b/pcsx2/DebugTools/DisR5900asm.cpp index 45ca425ae9..5555f79ec4 100644 --- a/pcsx2/DebugTools/DisR5900asm.cpp +++ b/pcsx2/DebugTools/DisR5900asm.cpp @@ -770,7 +770,7 @@ void BEQ( std::string& output ) else if (disSimplify && rs != 0 && rt == 0) disBranch(output, "beqz", rs); else - disBranch(output, "beq", rt, rs); + disBranch(output, "beq", rs, rt); } void BNE( std::string& output ) @@ -783,7 +783,7 @@ void BNE( std::string& output ) else if (disSimplify && rs != 0 && rt == 0) disBranch(output, "bnez", rs); else - disBranch(output, "bne", rt, rs); + disBranch(output, "bne", rs, rt); } void BLEZ( std::string& output ) { disBranch(output, "blez", DECODE_RS); }