first working prototype

This commit is contained in:
2026-04-24 09:44:15 +03:00
parent 97c460fb5a
commit e86eca4d1e
6 changed files with 191 additions and 27 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);