mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #3021 from unknownbrackets/report-server
Minor reporting related tweaks
This commit is contained in:
commit
90d6c0cd5e
3 changed files with 10 additions and 3 deletions
|
@ -605,8 +605,13 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
|
|||
|
||||
DEBUG_LOG(LOADER, "Importing Module %s, stubs at %08x", modulename, entry->firstSymAddr);
|
||||
if (entry->size != 5 && entry->size != 6) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry size %d", entry->size);
|
||||
needReport = true;
|
||||
if (entry->size != 7) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry size %d", entry->size);
|
||||
needReport = true;
|
||||
} else if (entry->extra != 0) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry with non-zero 7th value %08x", entry->extra);
|
||||
needReport = true;
|
||||
}
|
||||
}
|
||||
|
||||
// If nidData is 0, only variables are being imported.
|
||||
|
|
|
@ -372,6 +372,7 @@ static const HLEFunction scePower[] = {
|
|||
{0xebd177d6,WrapU_UUU<scePowerSetClockFrequency>,"scePower_EBD177D6"}, // This is also the same as SetClockFrequency
|
||||
{0x469989ad,WrapU_UUU<scePowerSetClockFrequency>,"scePower_469989ad"}, // This is also the same as SetClockFrequency
|
||||
{0xa85880d0,WrapU_V<IsPSPNonFat>,"scePower_a85880d0_IsPSPNonFat"},
|
||||
{0x3951af53,0,"scePowerWaitRequestCompletion"},
|
||||
};
|
||||
|
||||
//890129c in tyshooter looks bogus
|
||||
|
|
|
@ -350,13 +350,14 @@ const HLEFunction sceUmdUser[] =
|
|||
{0x56202973,WrapI_UU<sceUmdWaitDriveStatWithTimer>,"sceUmdWaitDriveStatWithTimer"},
|
||||
{0x4A9E5E29,WrapI_UU<sceUmdWaitDriveStatCB>,"sceUmdWaitDriveStatCB"},
|
||||
{0x6af9b50a,WrapU_V<sceUmdCancelWaitDriveStat>,"sceUmdCancelWaitDriveStat"},
|
||||
{0x6B4A146C,&WrapU_V<sceUmdGetDriveStat>,"sceUmdGetDriveStat"},
|
||||
{0x20628E6F,&WrapU_V<sceUmdGetErrorStat>,"sceUmdGetErrorStat"},
|
||||
{0x340B7686,WrapU_U<sceUmdGetDiscInfo>,"sceUmdGetDiscInfo"},
|
||||
{0xAEE7404D,&WrapU_U<sceUmdRegisterUMDCallBack>,"sceUmdRegisterUMDCallBack"},
|
||||
{0xBD2BDE07,&WrapI_I<sceUmdUnRegisterUMDCallBack>,"sceUmdUnRegisterUMDCallBack"},
|
||||
{0x87533940,WrapU_V<sceUmdReplaceProhibit>,"sceUmdReplaceProhibit"},
|
||||
{0xCBE9F02A,WrapU_V<sceUmdReplacePermit>,"sceUmdReplacePermit"},
|
||||
{0x14c6c45c,0,"sceUmdUser_14C6C45C"},
|
||||
{0xb103fa38,0,"sceUmdUser_B103FA38"},
|
||||
};
|
||||
|
||||
void Register_sceUmdUser()
|
||||
|
|
Loading…
Add table
Reference in a new issue