Skip to content

Commit

Permalink
Interpreter: Fix Wsign-compare warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
lightningterror committed Nov 8, 2023
1 parent d07b190 commit 8d7227b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ static __fi void _doBranch_shared(u32 tar)
{
if ((cpuRegs.pc - tar) < (4 * 10))
{
for (int i = tar; i < cpuRegs.pc; i += 4)
for (u32 i = tar; i < cpuRegs.pc; i += 4)
{
if (PSM(i) != 0)
{
Expand Down

0 comments on commit 8d7227b

Please sign in to comment.