diff options
author | Eugene Sandulenko | 2016-10-04 19:18:14 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-10-04 19:18:14 +0200 |
commit | 475ae058e31579a6304c89ccc66cb0a07b6435c5 (patch) | |
tree | c1d397f59d264644809b8fc8794dd15aaa3cf2f1 /engines | |
parent | ed44ddafba1f2426fdcc2c5768b7b6f652167ef8 (diff) | |
download | scummvm-rg350-475ae058e31579a6304c89ccc66cb0a07b6435c5.tar.gz scummvm-rg350-475ae058e31579a6304c89ccc66cb0a07b6435c5.tar.bz2 scummvm-rg350-475ae058e31579a6304c89ccc66cb0a07b6435c5.zip |
FULLPIPE: Fix crash on reentering scene27.
The scene destructor will take care of the allocated bats.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/scenes/scene27.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/fullpipe/scenes/scene27.cpp b/engines/fullpipe/scenes/scene27.cpp index 17bf3916de..a6ddbab5e3 100644 --- a/engines/fullpipe/scenes/scene27.cpp +++ b/engines/fullpipe/scenes/scene27.cpp @@ -53,9 +53,6 @@ void scene27_initScene(Scene *sc) { g_vars->scene27_maid = sc->getStaticANIObject1ById(ANI_MAID, -1); g_vars->scene27_batHandler = sc->getStaticANIObject1ById(ANI_BITAHANDLER, -1); - for (uint i = 0; i < g_vars->scene27_balls.size(); i++) - delete g_vars->scene27_balls[i]; - g_vars->scene27_balls.clear(); g_vars->scene27_bats.clear(); g_vars->scene27_var07.clear(); |