summaryrefslogtreecommitdiffstats
path: root/video/out/gl_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gl_video.c')
-rw-r--r--video/out/gl_video.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index 2aae1ad781..39a4e1783e 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -456,7 +456,8 @@ void gl_video_set_debug(struct gl_video *p, bool enable)
GL *gl = p->gl;
p->gl_debug = enable;
- gl_set_debug_logger(gl, (enable && p->gl->debug_context) ? p->log : NULL);
+ if (p->gl->debug_context)
+ gl_set_debug_logger(gl, enable ? p->log : NULL);
}
static void draw_triangles(struct gl_video *p, struct vertex *vb, int vert_count)