mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-04 23:16:41 +00:00
Only autosave the hashmap if enabled and not on mobile.
This commit is contained in:
parent
2aebbc6f07
commit
291d25f43d
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user