mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
Remove debugger hack for Symbian OS!
svn-id: r26127
This commit is contained in:
parent
922c0a7ea0
commit
f447d9d38f
@ -78,7 +78,6 @@ int Debugger::DebugPrintf(const char *format, ...) {
|
||||
return count;
|
||||
}
|
||||
|
||||
#ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
|
||||
void Debugger::attach(const char *entry) {
|
||||
|
||||
g_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, true);
|
||||
@ -116,7 +115,6 @@ void Debugger::onFrame() {
|
||||
detach();
|
||||
}
|
||||
}
|
||||
#endif // of ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
|
||||
|
||||
// Main Debugger Loop
|
||||
void Debugger::enter() {
|
||||
|
@ -38,17 +38,9 @@ public:
|
||||
|
||||
int DebugPrintf(const char *format, ...);
|
||||
|
||||
#ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
|
||||
// FIXME: Fingolfin asks: This code *used* to be a problem when GUI::Debugger
|
||||
// was a template class. But is it really still causing problems, or can
|
||||
// this hack go away now?
|
||||
virtual void onFrame();
|
||||
|
||||
virtual void attach(const char *entry = 0);
|
||||
#else
|
||||
void onFrame() {}
|
||||
void attach(const char *entry = 0) {}
|
||||
#endif
|
||||
bool isAttached() const { return _isAttached; }
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user