diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-25 22:50:05 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-25 22:50:07 +0200 |
commit | 8806e69f596f3e046f802cda068af86ec0c3f553 (patch) | |
tree | 458d6370143a4e1b4d04b08a8ed5f31a6d0db80e | |
parent | configure_system: Amend function casing (diff) | |
download | yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar.gz yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar.bz2 yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar.lz yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar.xz yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.tar.zst yuzu-8806e69f596f3e046f802cda068af86ec0c3f553.zip |
-rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index d4ed7d5d3..3aa9ca07e 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp @@ -232,8 +232,7 @@ void ConfigureSystem::SelectUser(const QModelIndex& index) { } void ConfigureSystem::AddUser() { - Service::Account::UUID uuid; - uuid.Generate(); + const auto uuid = Service::Account::UUID::Generate(); bool ok = false; const auto username = |