summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Spilsbury <smspillaz@gmail.com>2016-04-24 17:41:25 +0200
committerSam Spilsbury <smspillaz@gmail.com>2016-04-24 18:39:54 +0200
commitc6709d97bce27f248b78374a531a3ee01275c65d (patch)
treedf0bab005da2ce7686d6be03e164810c43c43496
parentshader: Format string must be provided inline and not as a variable (diff)
downloadyuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar.gz
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar.bz2
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar.lz
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar.xz
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.tar.zst
yuzu-c6709d97bce27f248b78374a531a3ee01275c65d.zip
-rw-r--r--src/video_core/shader/shader_jit_x64.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64.cpp
index d5a6a349c..9ee4065bf 100644
--- a/src/video_core/shader/shader_jit_x64.cpp
+++ b/src/video_core/shader/shader_jit_x64.cpp
@@ -795,6 +795,8 @@ void JitShader::FindReturnOffsets() {
case OpCode::Id::CALLU:
return_offsets.push_back(instr.flow_control.dest_offset + instr.flow_control.num_instructions);
break;
+ default:
+ break;
}
}