mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Reporting: Stop reporting module load versions.
We've got plenty of data, don't need to report anymore.
This commit is contained in:
parent
a652617ba0
commit
0a365495cd
1 changed files with 2 additions and 6 deletions
|
@ -1070,9 +1070,7 @@ static Module *__KernelLoadELFFromPtr(const u8 *ptr, size_t elfSize, u32 loadAdd
|
||||||
|
|
||||||
if (IsHLEVersionedModule(head->modname)) {
|
if (IsHLEVersionedModule(head->modname)) {
|
||||||
int ver = (head->module_ver_hi << 8) | head->module_ver_lo;
|
int ver = (head->module_ver_hi << 8) | head->module_ver_lo;
|
||||||
char temp[256];
|
INFO_LOG(SCEMODULE, "Loading module %s with version %04x, devkit %08x", head->modname, ver, head->devkitversion);
|
||||||
snprintf(temp, sizeof(temp), "Loading module %s with version %%04x, devkit %%08x", head->modname);
|
|
||||||
INFO_LOG_REPORT(SCEMODULE, temp, ver, head->devkitversion);
|
|
||||||
reportedModule = true;
|
reportedModule = true;
|
||||||
|
|
||||||
if (!strcmp(head->modname, "sceMpeg_library")) {
|
if (!strcmp(head->modname, "sceMpeg_library")) {
|
||||||
|
@ -1434,9 +1432,7 @@ static Module *__KernelLoadELFFromPtr(const u8 *ptr, size_t elfSize, u32 loadAdd
|
||||||
delete [] newptr;
|
delete [] newptr;
|
||||||
|
|
||||||
if (!reportedModule && IsHLEVersionedModule(modinfo->name)) {
|
if (!reportedModule && IsHLEVersionedModule(modinfo->name)) {
|
||||||
char temp[256];
|
INFO_LOG_REPORT(SCEMODULE, "Loading module %s with version %04x, devkit %08x", modinfo->name, modinfo->moduleVersion, devkitVersion);
|
||||||
snprintf(temp, sizeof(temp), "Loading module %s with version %%04x, devkit %%08x", modinfo->name);
|
|
||||||
INFO_LOG_REPORT(SCEMODULE, temp, modinfo->moduleVersion, devkitVersion);
|
|
||||||
|
|
||||||
if (!strcmp(modinfo->name, "sceMpeg_library")) {
|
if (!strcmp(modinfo->name, "sceMpeg_library")) {
|
||||||
__MpegLoadModule(modinfo->moduleVersion);
|
__MpegLoadModule(modinfo->moduleVersion);
|
||||||
|
|
Loading…
Add table
Reference in a new issue