mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-30 23:33:17 +00:00
fix for crash in apps when splash is missing
This commit is contained in:
parent
77cf875585
commit
38061ae636
2 changed files with 8 additions and 2 deletions
|
@ -622,7 +622,9 @@ public:
|
|||
void SubmitDone() {
|
||||
// This is wrong as `submitDone()` should never be blocking. The behavior will be
|
||||
// reworked with mutiple queues introduction
|
||||
cp.get();
|
||||
if (cp.valid()) {
|
||||
cp.get();
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue