1
0
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:
rexys 2020-04-15 22:55:13 +02:00 committed by Ivan
parent 0f6a0d2740
commit 8f3b04cbd6

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()