mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Clear symbol map in AttemptLoadSymbolmap on non-windows
This commit is contained in:
parent
2d331cb8c4
commit
51196742ee
1 changed files with 6 additions and 2 deletions
|
@ -17,7 +17,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "../Globals.h"
|
||||
#include "Globals.h"
|
||||
#include "Core/Debugger/SymbolMap.h"
|
||||
|
||||
struct InputState;
|
||||
|
||||
|
@ -54,7 +55,10 @@ public:
|
|||
virtual void BootDone() {}
|
||||
|
||||
virtual bool IsDebuggingEnabled() {return true;}
|
||||
virtual bool AttemptLoadSymbolMap() {return false;}
|
||||
virtual bool AttemptLoadSymbolMap() {
|
||||
symbolMap.Clear();
|
||||
return false;
|
||||
}
|
||||
virtual void SaveSymbolMap() {}
|
||||
virtual void SetWindowTitle(const char *message) {}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue