mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-30 14:04:55 +00:00
Fix hint mask
Thanks to red_prig for catching my mistake here.
This commit is contained in:
parent
df85a86c5d
commit
746c126bf5
@ -106,7 +106,8 @@ struct EqueueEvent {
|
||||
if (counter != 0xf) {
|
||||
counter++;
|
||||
}
|
||||
event.data = (time & 0xfff) | (counter << 0xc) | (event_hint_raw & 0xffffffffffff);
|
||||
event.data = (time & 0xfff) | (counter << 0xc) |
|
||||
(event_hint_raw & 0xffffffffffff0000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user