From 0844a660f0015d3fc04168da89fd3165520051b9 Mon Sep 17 00:00:00 2001
From: Ben <daprogramerforbatch@gmail.com>
Date: Wed, 30 Jan 2019 00:01:19 -0800
Subject: [PATCH 1/3] Fixed link

Minor change, this link didn't point to the right file, so I corrected it..
Well, it didn't point to any file really
---
 docs/gpu.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/gpu.md b/docs/gpu.md
index e1ed3d534..903c9b6e2 100644
--- a/docs/gpu.md
+++ b/docs/gpu.md
@@ -31,7 +31,7 @@ waiting for a fixed 60hz timer.
 
 ### Vulkan
 
-See the top of [src/xenia/gpu/vulkan/vulkan_gpu_flags.cc](../src/xenia/vulkan/vulkan_gpu_flags.cc).
+See the top of [src/xenia/gpu/vulkan/vulkan_gpu_flags.cc](../src/xenia/gpu/vulkan/vulkan_gpu_flags.cc).
 
 `vulkan_dump_disasm=true` "Dump shader disassembly. NVIDIA only supported."
 

From 947120f814dc4e1418520db46ded8dc31e4124fd Mon Sep 17 00:00:00 2001
From: Ike Johnson <complaints@ikejohnson.id.au>
Date: Fri, 22 Feb 2019 15:43:19 +0800
Subject: [PATCH 2/3] Move cmder.net over to HTTPS

THEY FINALLY GOT AROUND TO FIXING THE STUFF!
---
 docs/building.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/building.md b/docs/building.md
index 2d5e29185..6552de6a4 100644
--- a/docs/building.md
+++ b/docs/building.md
@@ -17,7 +17,7 @@ video drivers for your card.
 
 Ensure Python is in your PATH.
 
-I recommend using [Cmder](http://cmder.net/) for git and command
+I recommend using [Cmder](https://cmder.net/) for git and command
 line usage.
 
 #### Debugging

From 142148e5949042bab49689d90cea7efc797f26eb Mon Sep 17 00:00:00 2001
From: Maksim Derbasov <ntfs.hard@gmail.com>
Date: Sat, 2 Mar 2019 13:13:03 +0300
Subject: [PATCH 3/3] [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";