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 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." 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";