pcsx2:debug: swap 2 arguments

It changes nothing but it is more consistent

CID 146916 (#1 of 1): Arguments in wrong order i
(SWAPPED_ARGUMENTS)swapped_arguments: The positions of arguments in the call to disBranch do not match the ordering of the parameters:

    rt is passed to rs
    rs is passed to rt
This commit is contained in:
Gregory Hainaut 2015-10-21 19:48:32 +02:00
parent aff1467ea3
commit d7afd7aae0
1 changed files with 2 additions and 2 deletions

View File

@ -770,7 +770,7 @@ void BEQ( std::string& output )
else if (disSimplify && rs != 0 && rt == 0)
disBranch(output, "beqz", rs);
else
disBranch(output, "beq", rs, rt);
disBranch(output, "beq", rt, rs);
}
void BNE( std::string& output )
@ -847,7 +847,7 @@ void BNEL( std::string& output )
else if (disSimplify && rs != 0 && rt == 0)
disBranch(output, "bnezl", rs);
else
disBranch(output, "bnel", rt, rs);
disBranch(output, "bnel", rs, rt);
}
void BLEZL( std::string& output ) { disBranch(output, "blezl", DECODE_RS); }