Explorar o código

almost lured myself into another null pointer trap, fixed

jp9000 %!s(int64=12) %!d(string=hai) anos
pai
achega
61c6defd77
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      libobs-opengl/gl-subsystem.c

+ 1 - 1
libobs-opengl/gl-subsystem.c

@@ -247,7 +247,7 @@ void device_load_texture(device_t device, texture_t tex, int unit)
 	if (!gl_active_texture(GL_TEXTURE0 + unit))
 		goto fail;
 
-	if (!tex || (cur_tex && cur_tex->gl_target != tex->gl_target))
+	if (cur_tex && (!tex || cur_tex->gl_target != tex->gl_target))
 		gl_bind_texture(cur_tex->gl_target, 0);
 
 	device->cur_textures[unit] = tex;