summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-15 01:36:13 +0200
committerLioncash <mathew1800@gmail.com>2018-08-15 01:36:43 +0200
commit2e715ef70d73be38050464c53d89b0aabd150196 (patch)
tree41101af424220e6735accb246cec54556c6b43cf /src/core
parentMerge pull request #1055 from lioncash/init (diff)
downloadyuzu-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
Diffstat (limited to 'src/core')
-rw-r--r--src/core/frontend/emu_window.h6
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;
};