summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-24 04:31:56 +0200
committerLioncash <mathew1800@gmail.com>2018-07-24 04:31:58 +0200
commit33e2033af5655d13eec57e17154fb831e14acd9b (patch)
treecc32b79b6a343598f4e9b4d8fdb0c4ae77728dee /src/video_core
parentMerge pull request #787 from bunnei/tlds (diff)
downloadyuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar.gz
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar.bz2
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar.lz
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar.xz
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.tar.zst
yuzu-33e2033af5655d13eec57e17154fb831e14acd9b.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_decompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
index 4e36b6de8..d125d5a20 100644
--- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
@@ -750,8 +750,8 @@ private:
}
}
- std::string WriteTexsInstruction(const Instruction& instr, const std::string& coord,
- const std::string& texture) {
+ void WriteTexsInstruction(const Instruction& instr, const std::string& coord,
+ const std::string& texture) {
// Add an extra scope and declare the texture coords inside to prevent
// overwriting them in case they are used as outputs of the texs instruction.
shader.AddLine('{');