Only autosave the hashmap if enabled and not on mobile.

This commit is contained in:
Henrik Rydgard 2013-12-17 12:30:56 +01:00
parent 2aebbc6f07
commit 291d25f43d

View File

@ -322,7 +322,12 @@ bool PSP_IsInited() {
}
void PSP_Shutdown() {
MIPSAnalyst::StoreHashMap();
#ifndef USING_GLES2
if (g_Config.bFuncHashMap) {
MIPSAnalyst::StoreHashMap();
}
#endif
if (coreState == CORE_RUNNING)
Core_UpdateState(CORE_ERROR);
Core_NotifyShutdown();