aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/mads.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-25 23:10:51 -0500
committerPaul Gilbert2014-02-25 23:10:51 -0500
commitc49d7196fcabf18d9e97711f67b864808ca7848a (patch)
treec9511f8c6e81428c51bfaff04c54434cad0f5501 /engines/mads/mads.cpp
parent9eaab29afedf9eceee50f882b64cb39a14e616a2 (diff)
downloadscummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.tar.gz
scummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.tar.bz2
scummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.zip
MADS: In progress implementation of loadScene
Diffstat (limited to 'engines/mads/mads.cpp')
-rw-r--r--engines/mads/mads.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/mads.cpp b/engines/mads/mads.cpp
index f7fe03e2be..d78f37dd8b 100644
--- a/engines/mads/mads.cpp
+++ b/engines/mads/mads.cpp
@@ -83,7 +83,7 @@ void MADSEngine::initialise() {
_events = new EventsManager(this);
_palette = new Palette(this);
_font = new Font(this);
- _screen = MSurface::init(g_system->getWidth(), g_system->getHeight());
+ _screen = new MSurface(g_system->getWidth(), g_system->getHeight());
_sound = new SoundManager(this, _mixer);
_userInterface = UserInterface::init(this);
_game = Game::init(this);