From cb047fcc7596d5b83f2773d969b57cc34ff5a7be Mon Sep 17 00:00:00 2001 From: kd-11 <15904127+kd-11@users.noreply.github.com> Date: Fri, 28 Feb 2020 20:27:31 +0300 Subject: [PATCH] rsx: Disable zstat checks to avoid unnecessary stream splitting (#7624) --- rpcs3/Emu/RSX/RSXThread.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/RSXThread.cpp b/rpcs3/Emu/RSX/RSXThread.cpp index 2694106e00..5dee294384 100644 --- a/rpcs3/Emu/RSX/RSXThread.cpp +++ b/rpcs3/Emu/RSX/RSXThread.cpp @@ -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;