summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/debugger/graphics
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2017-07-20 21:47:53 +0200
committerwwylele <wwylele@gmail.com>2017-07-20 21:47:53 +0200
commit98cd5164c508e7cc5eedee1d6541948e341f32a9 (patch)
tree066af23260bec93ddb2c29a04194a22fcd5d9ef5 /src/citra_qt/debugger/graphics
parentMerge pull request #2804 from Kloen/theming (diff)
downloadyuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar.gz
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar.bz2
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar.lz
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar.xz
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.tar.zst
yuzu-98cd5164c508e7cc5eedee1d6541948e341f32a9.zip
Diffstat (limited to 'src/citra_qt/debugger/graphics')
-rw-r--r--src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp
index e3f3194db..f8584dce7 100644
--- a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp
+++ b/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp
@@ -255,7 +255,7 @@ QVariant GraphicsVertexShaderModel::data(const QModelIndex& index, int role) con
output << '(';
if (instr.flow_control.op != instr.flow_control.JustY) {
- if (instr.flow_control.refx)
+ if (!instr.flow_control.refx)
output << '!';
output << "cc.x";
}
@@ -267,7 +267,7 @@ QVariant GraphicsVertexShaderModel::data(const QModelIndex& index, int role) con
}
if (instr.flow_control.op != instr.flow_control.JustX) {
- if (instr.flow_control.refy)
+ if (!instr.flow_control.refy)
output << '!';
output << "cc.y";
}