mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
Added default destructors as required by the Symbian/Epoc port
svn-id: r18431
This commit is contained in:
parent
1c69696a9a
commit
9cdfe927be
@ -106,6 +106,8 @@ ScummDebugger::ScummDebugger(ScummEngine *s)
|
||||
DCmd_Register("imuse", &ScummDebugger::Cmd_IMuse);
|
||||
}
|
||||
|
||||
ScummDebugger::~ScummDebugger() {} // we need this here for __SYMBIAN32__
|
||||
|
||||
void ScummDebugger::preEnter() {
|
||||
// Pause sound output
|
||||
_old_soundsPaused = _vm->_sound->_soundsPaused;
|
||||
|
@ -30,6 +30,7 @@ class ScummEngine;
|
||||
class ScummDebugger : public Common::Debugger<ScummDebugger> {
|
||||
public:
|
||||
ScummDebugger(ScummEngine *s);
|
||||
virtual ~ScummDebugger(); // we need this here for __SYMBIAN32__
|
||||
|
||||
protected:
|
||||
ScummEngine *_vm;
|
||||
|
Loading…
x
Reference in New Issue
Block a user