mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
rpcsx-os: do not freeze on memory save data, part 2
This commit is contained in:
parent
d099439a32
commit
825c192c49
2 changed files with 10 additions and 2 deletions
|
|
@ -181,7 +181,8 @@ static SysResult keventChange(KQueue *kq, KEvent &change, Thread *thread) {
|
|||
}
|
||||
kq->cv.notify_all(kq->mtx);
|
||||
} else if (change.filter == kEvFiltDisplay) {
|
||||
if (change.ident != 0x51000100000000 && change.ident != 0x63010100000000) {
|
||||
if (change.ident != 0x51000100000000 && change.ident != 0x63010100000000 &&
|
||||
change.ident != 0x06000000000000) {
|
||||
nodeIt->triggered = true;
|
||||
kq->cv.notify_all(kq->mtx);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue