mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-29 00:33:01 +00:00
Merge pull request #118 from lioncash/misc-things
Fix erroneous assignment in an if statement.
This commit is contained in:
commit
621edfb926
@ -896,7 +896,7 @@ public:
|
|||||||
SPU.In_MBox.PushUncond(CELL_OK);
|
SPU.In_MBox.PushUncond(CELL_OK);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (code = 128)
|
else if (code == 128)
|
||||||
{
|
{
|
||||||
/* ===== sys_event_flag_set_bit ===== */
|
/* ===== sys_event_flag_set_bit ===== */
|
||||||
u32 flag = v & 0xffffff;
|
u32 flag = v & 0xffffff;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user