Fix erroneous assignment in an if statement.

Should have been a comparison.
This commit is contained in:
Lioncash 2014-03-24 20:08:33 -04:00
parent 0ef0cfb38a
commit a5d9c9033f

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;