Fix typo.
authorCarl Hetherington <cth@carlh.net>
Mon, 3 Jun 2019 22:59:27 +0000 (23:59 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 3 Jun 2019 22:59:27 +0000 (23:59 +0100)
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;