From 7213d27ea31c7bd8e535297744457cdd6433e8f4 Mon Sep 17 00:00:00 2001 From: sum2012 Date: Sat, 5 Oct 2013 07:37:51 +0800 Subject: [PATCH] Increase log level in sceUtilityLoadModule Some modules need return error as dissus in https://github.com/hrydgard/ppsspp/issues/860#issuecomment-25675539 --- Core/HLE/sceUtility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceUtility.cpp b/Core/HLE/sceUtility.cpp index a67d5a81f..fd823c729 100644 --- a/Core/HLE/sceUtility.cpp +++ b/Core/HLE/sceUtility.cpp @@ -206,7 +206,7 @@ u32 sceUtilityLoadModule(u32 module) } currentlyLoadedModules.insert(module); - DEBUG_LOG(SCEUTILITY, "sceUtilityLoadModule(%i)", module); + INFO_LOG(SCEUTILITY, "sceUtilityLoadModule(%i)", module); // TODO: Each module has its own timing, technically, but this is a low-end. // Note: Some modules have dependencies, but they still resched. if (module == 0x3FF)