also fix this

This commit is contained in:
TurtleP 2022-04-09 16:14:12 -04:00
parent b843287f49
commit fd79c9e185

View File

@ -37,7 +37,7 @@ int main(int argc, char **argv)
rc = accountGetPreselectedUser(&userID); rc = accountGetPreselectedUser(&userID);
if (R_FAILED(rc)) { if (R_FAILED(rc)) {
printf("accountGetPreselectedUser() failed: 0x%x, using pselUi..\n", rc); printf("accountGetPreselectedUser() failed: 0x%x, using pselShowUserSelector..\n", rc);
/* Create player selection UI settings */ /* Create player selection UI settings */
PselUserSelectionSettings settings; PselUserSelectionSettings settings;
@ -46,7 +46,7 @@ int main(int argc, char **argv)
rc = pselShowUserSelector(&userID, &settings); rc = pselShowUserSelector(&userID, &settings);
if (R_FAILED(rc)) { if (R_FAILED(rc)) {
printf("using pselShowUserSelector() failed: 0x%x\n", rc); printf("pselShowUserSelector() failed: 0x%x\n", rc);
} }
} }