ACCESS: Fix memory leaks

This commit is contained in:
Paul Gilbert 2014-11-27 10:13:38 -05:00
parent f75fa68c05
commit 4c71b12e02
3 changed files with 6 additions and 2 deletions

View file

@ -78,6 +78,10 @@ Debugger::Debugger(AccessEngine *vm) : GUI::Debugger(), _vm(vm) {
}
}
Debugger::~Debugger() {
delete[] _sceneDescr;
}
bool Debugger::Cmd_LoadScene(int argc, const char **argv) {
switch (argc) {
case 1: