diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-15 01:36:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-15 01:36:43 +0200 |
commit | 2e715ef70d73be38050464c53d89b0aabd150196 (patch) | |
tree | 41101af424220e6735accb246cec54556c6b43cf | |
parent | Merge pull request #1055 from lioncash/init (diff) | |
download | yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar.gz yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar.bz2 yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar.lz yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar.xz yuzu-2e715ef70d73be38050464c53d89b0aabd150196.tar.zst yuzu-2e715ef70d73be38050464c53d89b0aabd150196.zip |
-rw-r--r-- | src/core/frontend/emu_window.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h index 384dc7822..7006a37b3 100644 --- a/src/core/frontend/emu_window.h +++ b/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; }; |