rpcsx-os: do not freeze on memory save data, part 2

This commit is contained in:
DH 2024-10-01 19:48:18 +03:00
parent d099439a32
commit 825c192c49
2 changed files with 10 additions and 2 deletions

View file

@ -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);
}