Add a setting to autosave the symbol map.

And move it into system, needs to be after the coreParameter too.
This commit is contained in:
Unknown W. Brackets
2013-03-30 21:42:43 -07:00
parent 8155657ea3
commit 8f911a0ebe
8 changed files with 26 additions and 4 deletions

View File

@@ -80,7 +80,6 @@ EmuScreen::EmuScreen(const std::string &filename) : invalid_(true) {
}
host->BootDone();
host->AttemptLoadSymbolMap();
host->UpdateDisassembly();
#ifdef _WIN32
@@ -99,8 +98,6 @@ EmuScreen::EmuScreen(const std::string &filename) : invalid_(true) {
EmuScreen::~EmuScreen() {
if (!invalid_) {
// If we were invalid, it would already be shutdown.
// symbolMap.SaveSymbolMap(SymbolMapFilename(coreParam.fileToStart).c_str());
PSP_Shutdown();
}
}