Fixed by my friend(slore)
Make Dangan Ronpa -NPJH50372 can see movie in nornal
(Press new Game, will see the first movie fly to the universe)
/trunk/src/jpcsp/HLE/modules150/scePsmfPlayer.java
change from setValue to getValue
Make Dangan Ronpa -NPJH50372 can see movie in nornal
(Press new Game, will see the first movie fly to the universe)
/trunk/src/jpcsp/HLE/modules150/scePsmfPlayer.java
change from setValue to getValue
Code:
@HLEFunction(nid = 0xDF089680, version = 150, checkInsideInterrupt = true)
public int scePsmfPlayerGetPsmfInfo(@CheckArgument("checkPlayerInitialized") int psmfPlayer, TPointer32 psmfInfoAddr) {
if (psmfPlayerStatus < PSMF_PLAYER_STATUS_STANDBY) {
return ERROR_PSMFPLAYER_NOT_INITIALIZED;
}
psmfCurrentPts = psmfInfoAddr.getValue(0);
psmfAvcStreamNum = psmfInfoAddr.getValue(4);
psmfAtracStreamNum = psmfInfoAddr.getValue(8);
psmfPcmStreamNum = psmfInfoAddr.getValue(12);
psmfPlayerVersion = psmfInfoAddr.getValue(16);
return 0;
}