Commit 79666d2b authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

wined3d: Don't return a value from a void function.

parent 612801d3
......@@ -3098,7 +3098,8 @@ static void shader_glsl_texldd(const struct wined3d_shader_instruction *ins)
if (!gl_info->supported[ARB_SHADER_TEXTURE_LOD] && !gl_info->supported[EXT_GPU_SHADER4])
{
FIXME("texldd used, but not supported by hardware. Falling back to regular tex\n");
return shader_glsl_tex(ins);
shader_glsl_tex(ins);
return;
}
sampler_idx = ins->src[1].reg.idx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment