diff options
author | Paul Gilbert | 2014-02-25 23:10:51 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-02-25 23:10:51 -0500 |
commit | c49d7196fcabf18d9e97711f67b864808ca7848a (patch) | |
tree | c9511f8c6e81428c51bfaff04c54434cad0f5501 /engines/mads/nebular | |
parent | 9eaab29afedf9eceee50f882b64cb39a14e616a2 (diff) | |
download | scummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.tar.gz scummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.tar.bz2 scummvm-rg350-c49d7196fcabf18d9e97711f67b864808ca7848a.zip |
MADS: In progress implementation of loadScene
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/game_nebular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp index e777ff8def..c55abf5601 100644 --- a/engines/mads/nebular/game_nebular.cpp +++ b/engines/mads/nebular/game_nebular.cpp @@ -34,7 +34,7 @@ namespace MADS { namespace Nebular { GameNebular::GameNebular(MADSEngine *vm): Game(vm) { - _surface =MSurface::init(MADS_SCREEN_WIDTH, MADS_SCREEN_HEIGHT - MADS_INTERFACE_HEIGHT); + _surface = new MSurface(MADS_SCREEN_WIDTH, MADS_SCREEN_HEIGHT - MADS_INTERFACE_HEIGHT); } int GameNebular::checkCopyProtection() { |