summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/gl_w32.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/video/out/gl_w32.c b/video/out/gl_w32.c
index fac25228d4..d80fa00143 100644
--- a/video/out/gl_w32.c
+++ b/video/out/gl_w32.c
@@ -44,10 +44,8 @@ static bool create_context_w32_old(struct MPGLContext *ctx)
struct w32_context *w32_ctx = ctx->priv;
HGLRC *context = &w32_ctx->context;
- if (*context) {
- gl->Finish(); // supposedly to prevent flickering
+ if (*context)
return true;
- }
HWND win = ctx->vo->w32->window;
HDC windc = GetDC(win);