Browse Source

Merge pull request #792 from lioncash/retval

gl_shader_decompiler: Correct return value of WriteTexsInstruction()
nce_cpp
bunnei 8 years ago
committed by GitHub
parent
commit
15f87717ca
  1. 2
      src/video_core/renderer_opengl/gl_shader_decompiler.cpp

2
src/video_core/renderer_opengl/gl_shader_decompiler.cpp

@ -756,7 +756,7 @@ private:
}
}
std::string WriteTexsInstruction(const Instruction& instr, const std::string& coord,
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.

Loading…
Cancel
Save