Merge pull request #3851 from wwylele/shut-up-texture3

gl_shader_gen: lower log level of using disabled proctex
master
Weiyi Wang 2018-06-28 18:03:05 +07:00 committed by GitHub
commit 80f6510355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -336,7 +336,7 @@ static std::string SampleTexture(const PicaFSConfig& config, unsigned texture_un
if (state.proctex.enable) {
return "ProcTex()";
} else {
LOG_ERROR(Render_OpenGL, "Using Texture3 without enabling it");
NGLOG_DEBUG(Render_OpenGL, "Using Texture3 without enabling it");
return "vec4(0.0)";
}
default: