[UI] Update gamertag input field only on change

No need to validate gamertag every frame
This commit is contained in:
Gliniak
2026-03-14 23:25:09 +01:00
parent d37c22aad0
commit 8ccf01d151
4 changed files with 13 additions and 12 deletions

View File

@@ -35,6 +35,7 @@ class CreateProfileUI final : public XamDialog {
bool has_opened_ = false;
bool migration_ = false;
char gamertag_[16] = "";
bool valid_gamertag_ = false;
Emulator* emulator_;
};