diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-11-10 00:08:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-11-10 00:08:19 +0100 |
| commit | c45abd2735b5265b091817f7f2f2884016996093 (patch) | |
| tree | fcd04531bb1785d3859c23f3c95fe5f2768fad33 | |
| parent | 5f70296713c82c9c7afbf1c50146d83b4caf26c3 (diff) | |
Fix uninitialised variable.
| -rw-r--r-- | src/wx/gl_video_view.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/gl_video_view.cc b/src/wx/gl_video_view.cc index 4fc620936..397693f51 100644 --- a/src/wx/gl_video_view.cc +++ b/src/wx/gl_video_view.cc @@ -79,6 +79,7 @@ check_gl_error (char const * last) GLVideoView::GLVideoView (FilmViewer* viewer, wxWindow *parent) : VideoView (viewer) , _context (nullptr) + , _rec2020(false) , _vsync_enabled (false) , _playing (false) , _one_shot (false) |
