Преглед на файлове

Merge pull request #1067 from lioncash/init

emu_window: Ensure WindowConfig members are always initialized
bunnei преди 8 години
родител
ревизия
301baaa942
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      src/core/frontend/emu_window.h

+ 3 - 3
src/core/frontend/emu_window.h

@@ -34,9 +34,9 @@ class EmuWindow {
 public:
     /// Data structure to store emuwindow configuration
     struct WindowConfig {
-        bool fullscreen;
-        int res_width;
-        int res_height;
+        bool fullscreen = false;
+        int res_width = 0;
+        int res_height = 0;
         std::pair<unsigned, unsigned> min_client_area_size;
     };