Fix uninitialized variable access.

pull/4/head
whitequark 2016-04-24 00:19:04 +00:00
parent 7f79461d5d
commit ba4cb28251
1 changed files with 1 additions and 1 deletions

View File

@ -647,7 +647,7 @@ private:
class GraphicsWindowGtk : public Gtk::Window {
public:
GraphicsWindowGtk() : _overlay(_widget) {
GraphicsWindowGtk() : _overlay(_widget), _is_fullscreen(false) {
set_default_size(900, 600);
_box.pack_start(_menubar, false, true);