ACCESS: Fix memory leaks
This commit is contained in:
parent
f75fa68c05
commit
4c71b12e02
3 changed files with 6 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue