1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-24 19:52:37 +01:00

Merge pull request #118 from lioncash/misc-things

Fix erroneous assignment in an if statement.
This commit is contained in:
Alexandro Sánchez Bach 2014-03-25 02:09:11 +01:00
commit 621edfb926

View File

@ -896,7 +896,7 @@ public:
SPU.In_MBox.PushUncond(CELL_OK);
return;
}
else if (code = 128)
else if (code == 128)
{
/* ===== sys_event_flag_set_bit ===== */
u32 flag = v & 0xffffff;