diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-06-03 23:59:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-06-03 23:59:27 +0100 |
| commit | 95fd93f5b1432b5230be76f1521216b472744514 (patch) | |
| tree | bab9bde43e2004ad8f9979c1cb1eb5f74186d562 /src | |
| parent | 7c44dc0607d46d93e3b3e9b46d1e5ecd2bc64a99 (diff) | |
Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/gl_video_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/gl_video_view.cc b/src/wx/gl_video_view.cc index c0c71e965..a0f83db6d 100644 --- a/src/wx/gl_video_view.cc +++ b/src/wx/gl_video_view.cc @@ -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; |
