Skip to content

Commit

Permalink
rsx: Disable zstat checks to avoid unnecessary stream splitting (#7624)
Browse files Browse the repository at this point in the history
  • Loading branch information
kd-11 committed Feb 28, 2020
1 parent ac25816 commit cb047fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rpcs3/Emu/RSX/RSXThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2792,7 +2792,8 @@ namespace rsx

check_state(ptimer, flush_queue);

if (m_current_task && m_current_task->active)
// Disabled since only ZPASS is implemented right now
if (false) //(m_current_task && m_current_task->active)
{
// Data check
u32 expected_type = 0;
Expand Down

0 comments on commit cb047fc

Please sign in to comment.