swaroop: set controls to 'stopped' when a playlist finishes.
[dcpomatic.git] / src / wx / gl_video_view.cc
index c0c71e965df76819cedd495b9a62956c8cc6e92a..a0f83db6d4390dfba4d056d5d4eb13da67048164 100644 (file)
@@ -70,7 +70,7 @@ GLVideoView::GLVideoView (FilmViewer* viewer, wxWindow *parent)
 #ifdef DCPOMATIC_WINDOWS
        if (_canvas->IsExtensionSupported("WGL_EXT_swap_control")) {
                /* Enable vsync */
-               PFNWGLSWAPINTERVALEXTPROC swap = (PFNWGLSWAPINTERVALEXTPROC) wglGetProceAddress("wglSwapIntervalEXT");
+               PFNWGLSWAPINTERVALEXTPROC swap = (PFNWGLSWAPINTERVALEXTPROC) wglGetProcAddress("wglSwapIntervalEXT");
                if (swap) {
                        swap (1);
                        _vsync_enabled = true;