summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksim Derbasov <ntfs.hard@gmail.com>2019-03-02 13:13:03 +0300
committerRick Gibbed <rick@gibbed.us>2019-03-02 04:13:03 -0600
commit142148e5949042bab49689d90cea7efc797f26eb (patch)
tree359061e3c08fe37a3357776087b67cc1832ac6c6
parentd703b5b8805986d14534a7bad213634662fb1ef1 (diff)
[GPU] Fix bit check in Make Coherent logging.
-rw-r--r--src/xenia/gpu/command_processor.cc2
1 files changed, 1 insertions, 1 deletions
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";