LASTEXPRESS: Add missing casts, fix warnings and correct typos

svn-id: r53694
This commit is contained in:
Julien Templier 2010-10-22 01:30:18 +00:00
parent 06d9de0a9b
commit fed894aeee
11 changed files with 90 additions and 58 deletions

View file

@ -851,7 +851,8 @@ bool Debugger::cmdBeetle(int argc, const char **argv) {
// Cleanup
beetle->unload();
delete beetle;
SAFE_DELETE(action);
if (action)
delete action;
// Pause for a second to be able to see the final scene
_engine->_system->delayMillis(1000);