first working prototype

This commit is contained in:
2026-04-24 09:44:15 +03:00
parent 97c460fb5a
commit 3e19149cb4
7 changed files with 216 additions and 55 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ static User getUser(AccountUid id)
memset(&profilebase, 0, sizeof(profilebase));
if (R_SUCCEEDED(accountGetProfile(&profile, id)) && R_SUCCEEDED(accountProfileGet(&profile, NULL, &profilebase))) {
user.name = std::string(profilebase.nickname, 0x20);
user.name = std::string(profilebase.nickname);
}
accountProfileClose(&profile);