diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-25 22:52:21 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-25 22:52:23 +0200 |
commit | bf7da804c5435a589909466d45e5ddf9a772cd45 (patch) | |
tree | a7c97a789c18c611002c411d504acbed5069cc6c | |
parent | configure_system: Simplify UUID generation call in AddUser() (diff) | |
download | yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar.gz yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar.bz2 yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar.lz yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar.xz yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.tar.zst yuzu-bf7da804c5435a589909466d45e5ddf9a772cd45.zip |
-rw-r--r-- | src/yuzu/configuration/configure_system.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h index 86269ccd5..0d15d9ac4 100644 --- a/src/yuzu/configuration/configure_system.h +++ b/src/yuzu/configuration/configure_system.h @@ -57,11 +57,12 @@ private: std::vector<QList<QStandardItem*>> list_items; std::unique_ptr<Ui::ConfigureSystem> ui; - bool enabled; + bool enabled = false; - int birthmonth, birthday; - int language_index; - int sound_index; + int birthmonth = 0; + int birthday = 0; + int language_index = 0; + int sound_index = 0; std::unique_ptr<Service::Account::ProfileManager> profile_manager; }; |