diff options
author | Max Horn | 2006-11-12 21:08:55 +0000 |
---|---|---|
committer | Max Horn | 2006-11-12 21:08:55 +0000 |
commit | 5563013c1d31d8dbcc451d5f37bc21c8ae55848b (patch) | |
tree | 13401588324b6b2022d89c1fcd7478e3dd83502b /engines | |
parent | 47d26c2cb3102651bb03b910e56399805e649d6e (diff) | |
download | scummvm-rg350-5563013c1d31d8dbcc451d5f37bc21c8ae55848b.tar.gz scummvm-rg350-5563013c1d31d8dbcc451d5f37bc21c8ae55848b.tar.bz2 scummvm-rg350-5563013c1d31d8dbcc451d5f37bc21c8ae55848b.zip |
Don't delete the savefile manager in the Engine destructor
svn-id: r24703
Diffstat (limited to 'engines')
-rw-r--r-- | engines/engine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp index c2b01ac715..6749b9027e 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -51,7 +51,6 @@ Engine::Engine(OSystem *syst) Engine::~Engine() { _mixer->stopAll(true); - delete _saveFileMan; g_engine = NULL; } |