rsx: Fix is_fifo_idle with hle gcm

This commit is contained in:
rexys
2020-04-15 22:55:13 +02:00
committed by Ivan
parent 0f6a0d2740
commit 8f3b04cbd6
+1 -1
View File
@@ -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()