mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
rsx: Fix is_fifo_idle with hle gcm
This commit is contained in:
parent
0f6a0d2740
commit
8f3b04cbd6
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue