diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 17:41:25 +0200 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 18:39:54 +0200 |
commit | c6709d97bce27f248b78374a531a3ee01275c65d (patch) | |
tree | df0bab005da2ce7686d6be03e164810c43c43496 /src | |
parent | shader: Format string must be provided inline and not as a variable (diff) | |
download | yuzu-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 |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/shader/shader_jit_x64.cpp | 2 |
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; } } |