diff options
author | Eugene Sandulenko | 2005-10-08 15:35:07 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-10-08 15:35:07 +0000 |
commit | cf512d26dece10522aba3a79962faff090b44035 (patch) | |
tree | 65a58c60b14c63da8f27e50b1aa97e4de8a9095d | |
parent | 176f32bfa166a6c842092abdd9cc936b0260f31d (diff) | |
download | scummvm-rg350-cf512d26dece10522aba3a79962faff090b44035.tar.gz scummvm-rg350-cf512d26dece10522aba3a79962faff090b44035.tar.bz2 scummvm-rg350-cf512d26dece10522aba3a79962faff090b44035.zip |
Oops. Fix crash introduced by last commit.
svn-id: r18960
-rw-r--r-- | saga/saga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/saga.cpp b/saga/saga.cpp index ccc6898e32..daccf109b3 100644 --- a/saga/saga.cpp +++ b/saga/saga.cpp @@ -216,9 +216,9 @@ int SagaEngine::init(GameDetector &detector) { _anim = new Anim(this); _script = new Script(this); _interface = new Interface(this); // requires script module + _scene = new Scene(this); _actor = new Actor(this); _palanim = new PalAnim(this); - _scene = new Scene(this); _isoMap = new IsoMap(this); _puzzle = new Puzzle(this); |