sceNpManagerRequestTicket2 (return offline)

Returning CELL_OK in sceNpManagerRequestTicket2 makes NPEB01268 loop indefinitely trying to check the downloaded content.
Telling that the system is offline escapes the loop and make the game go further.
Moves NPEB01268/BLES01794 from Intro to Ingame.
This commit is contained in:
ikki84 2018-05-22 00:04:29 -03:00 committed by Ivan
parent 824ad4fea7
commit 83b09cf047
1 changed files with 1 additions and 1 deletions

View File

@ -1191,7 +1191,7 @@ s32 sceNpManagerRequestTicket()
s32 sceNpManagerRequestTicket2()
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
return SCE_NP_ERROR_OFFLINE;
}
s32 sceNpManagerGetTicket()