mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-02 06:40:20 +01:00
rsx: Fix is_fifo_idle with hle gcm
This commit is contained in:
parent
0f6a0d2740
commit
8f3b04cbd6
|
|
@ -2265,7 +2265,7 @@ namespace rsx
|
|||
|
||||
bool thread::is_fifo_idle() const
|
||||
{
|
||||
return ctrl->get == (ctrl->put & ~3);
|
||||
return ctrl == nullptr || ctrl->get == (ctrl->put & ~3);
|
||||
}
|
||||
|
||||
void thread::flush_fifo()
|
||||
|
|
|
|||
Loading…
Reference in a new issue