mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Log module id as hex, clearer.
This commit is contained in:
parent
5a74826372
commit
bc03aa11f2
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ static u32 sceUtilityLoadModule(u32 module) {
|
||||||
// Some games, like Kamen Rider Climax Heroes OOO, require an error if dependencies aren't loaded yet.
|
// Some games, like Kamen Rider Climax Heroes OOO, require an error if dependencies aren't loaded yet.
|
||||||
for (const int *dep = info->dependencies; *dep != 0; ++dep) {
|
for (const int *dep = info->dependencies; *dep != 0; ++dep) {
|
||||||
if (currentlyLoadedModules.find(*dep) == currentlyLoadedModules.end()) {
|
if (currentlyLoadedModules.find(*dep) == currentlyLoadedModules.end()) {
|
||||||
u32 result = hleLogError(SCEUTILITY, SCE_KERNEL_ERROR_LIBRARY_NOTFOUND, "dependent module %i not loaded", *dep);
|
u32 result = hleLogError(SCEUTILITY, SCE_KERNEL_ERROR_LIBRARY_NOTFOUND, "dependent module %04x not loaded", *dep);
|
||||||
return hleDelayResult(result, "utility module load attempt", 25000);
|
return hleDelayResult(result, "utility module load attempt", 25000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue