From 142148e5949042bab49689d90cea7efc797f26eb Mon Sep 17 00:00:00 2001 From: Maksim Derbasov Date: Sat, 2 Mar 2019 13:13:03 +0300 Subject: [PATCH] [GPU] Fix bit check in Make Coherent logging. --- src/xenia/gpu/command_processor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/gpu/command_processor.cc b/src/xenia/gpu/command_processor.cc index 5c5622801..1f7e36748 100644 --- a/src/xenia/gpu/command_processor.cc +++ b/src/xenia/gpu/command_processor.cc @@ -360,7 +360,7 @@ void CommandProcessor::MakeCoherent() { } const char* action = "N/A"; - if (status_host & 0x03000000) { + if ((status_host & 0x03000000) == 0x03000000) { action = "VC | TC"; } else if (status_host & 0x02000000) { action = "TC";