mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Oops, dumb mistake in reporting.
This commit is contained in:
parent
5c13d482e0
commit
67fc607671
1 changed files with 2 additions and 2 deletions
|
@ -827,8 +827,8 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
|
|||
if (IsHLEVersionedModule(head->modname)) {
|
||||
int ver = (head->module_ver_hi << 8) | head->module_ver_lo;
|
||||
char temp[256];
|
||||
snprintf(temp, sizeof(temp), "Loading module %s with version %%04x, devkit %08x", head->modname, head->devkitversion);
|
||||
INFO_LOG_REPORT(SCEMODULE, temp, ver);
|
||||
snprintf(temp, sizeof(temp), "Loading module %s with version %%04x, devkit %%08x", head->modname);
|
||||
INFO_LOG_REPORT(SCEMODULE, temp, ver, head->devkitversion);
|
||||
reportedModule = true;
|
||||
|
||||
if (!strcmp(head->modname, "sceMpeg_library")) {
|
||||
|
|
Loading…
Add table
Reference in a new issue