mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +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 New Issue
Block a user