rsx: Fix is_fifo_idle with hle gcm
This commit is contained in:
@@ -2265,7 +2265,7 @@ namespace rsx
|
|||||||
|
|
||||||
bool thread::is_fifo_idle() const
|
bool thread::is_fifo_idle() const
|
||||||
{
|
{
|
||||||
return ctrl->get == (ctrl->put & ~3);
|
return ctrl == nullptr || ctrl->get == (ctrl->put & ~3);
|
||||||
}
|
}
|
||||||
|
|
||||||
void thread::flush_fifo()
|
void thread::flush_fifo()
|
||||||
|
|||||||
Reference in New Issue
Block a user