early-access version 2081

This commit is contained in:
pineappleEA
2021-09-24 15:00:03 +02:00
parent 397fea26bb
commit da6fdc0ca9
6 changed files with 17 additions and 9 deletions

View File

@@ -60,7 +60,7 @@ void ProfileSelect::Execute() {
void ProfileSelect::SelectionComplete(std::optional<Common::UUID> uuid) {
UserSelectionOutput output{};
if (uuid.has_value() && uuid->uuid != Common::INVALID_UUID) {
if (uuid.has_value() && uuid->IsValid()) {
output.result = 0;
output.uuid_selected = uuid->uuid;
} else {