mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Fix erroneous assignment in an if statement.
Should have been a comparison.
This commit is contained in:
parent
0ef0cfb38a
commit
a5d9c9033f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue