mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Temporarily disable symbols on Qt, crashes strangely.
This commit is contained in:
parent
c3629b4a53
commit
1aa5351e34
1 changed files with 4 additions and 1 deletions
|
@ -121,7 +121,10 @@ public:
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
virtual bool AttemptLoadSymbolMap() {
|
virtual bool AttemptLoadSymbolMap() {
|
||||||
return g_symbolMap->LoadSymbolMap(SymbolMapFilename(PSP_CoreParameter().fileToStart));
|
return false;
|
||||||
|
// TODO: Make this work with Qt and threaded GL... not sure what's so broken.
|
||||||
|
// auto fn = SymbolMapFilename(PSP_CoreParameter().fileToStart);
|
||||||
|
// return g_symbolMap->LoadSymbolMap(fn);
|
||||||
}
|
}
|
||||||
virtual void PrepareShutdown() {
|
virtual void PrepareShutdown() {
|
||||||
g_symbolMap->SaveSymbolMap(SymbolMapFilename(PSP_CoreParameter().fileToStart));
|
g_symbolMap->SaveSymbolMap(SymbolMapFilename(PSP_CoreParameter().fileToStart));
|
||||||
|
|
Loading…
Add table
Reference in a new issue