diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-10-24 09:25:13 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-10-24 09:25:20 -0400 |
commit | e7ac42677be6c13e5286fb42004aa94b0da45391 (patch) | |
tree | 91982bf07856c1de33d99f7187665b5c481be04f /src/yuzu/configuration/configure_system.h | |
parent | bfad41b0c12a308b0a5a10e3162d74140e3c121a (diff) |
configure_system: Clear current username before overwriting
Prevents bug where old username would remain if the new username was shorter in length.
Diffstat (limited to 'src/yuzu/configuration/configure_system.h')
-rw-r--r-- | src/yuzu/configuration/configure_system.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.h b/src/yuzu/configuration/configure_system.h index 6adadfccf..b73e0719c 100644 --- a/src/yuzu/configuration/configure_system.h +++ b/src/yuzu/configuration/configure_system.h @@ -8,7 +8,11 @@ #include <QList> #include <QWidget> -#include "core/hle/service/acc/profile_manager.h" + +namespace Service::Account { +class ProfileManager; +struct UUID; +} // namespace Service::Account class QGraphicsScene; class QStandardItem; |