From 614ec822e81f75ab1f7a551f5e2877a9f085be6d Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 22 Oct 2013 14:41:19 +0200 Subject: [PATCH] Let's only bother with symbol loading on the desktop. --- Core/HLE/sceKernelModule.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index 639b43cd72..204ddfe25f 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -794,8 +794,10 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro u32 textStart = reader.GetSectionAddr(textSection); u32 textSize = reader.GetSectionSize(textSection); +#if !defined(USING_GLES2) if (!reader.LoadSymbols()) MIPSAnalyst::ScanForFunctions(textStart, textStart+textSize); +#endif } INFO_LOG(LOADER,"Module %s: %08x %08x %08x", modinfo->name, modinfo->gp, modinfo->libent,modinfo->libstub);