mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 00:00:42 +01:00
[bridge] fix wait
This commit is contained in:
parent
ebe051f6fb
commit
bbfcda5f10
|
|
@ -223,13 +223,13 @@ private:
|
|||
}
|
||||
|
||||
position = 0;
|
||||
waitPuller(cmdSize);
|
||||
waitPuller(0);
|
||||
}
|
||||
|
||||
return position;
|
||||
}
|
||||
void waitPuller(std::uint64_t pullValue) {
|
||||
while (header->pull < pullValue) {
|
||||
while (header->pull != pullValue) {
|
||||
;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue