diff options
author | Paul Gilbert | 2014-03-16 14:53:10 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-03-16 14:53:10 -0400 |
commit | f3415b762eede6481cbfcb48faecfec505150eab (patch) | |
tree | 0a7ab06655e724c417ad4aade16359722b15f7a6 /engines/mads/nebular | |
parent | 834cf846f14ac613b96a662b9701380e7a132d9b (diff) | |
download | scummvm-rg350-f3415b762eede6481cbfcb48faecfec505150eab.tar.gz scummvm-rg350-f3415b762eede6481cbfcb48faecfec505150eab.tar.bz2 scummvm-rg350-f3415b762eede6481cbfcb48faecfec505150eab.zip |
MADS: Implemented lots of Player methods
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 1476620f9d..91c10a50ee 100644 --- a/engines/mads/nebular/game_nebular.cpp +++ b/engines/mads/nebular/game_nebular.cpp @@ -35,7 +35,7 @@ namespace MADS { namespace Nebular { GameNebular::GameNebular(MADSEngine *vm): Game(vm) { - _surface = new MSurface(MADS_SCREEN_WIDTH, MADS_SCREEN_HEIGHT - MADS_INTERFACE_HEIGHT); + _surface = new MSurface(MADS_SCREEN_WIDTH, MADS_SCENE_HEIGHT); _storyMode = STORYMODE_NAUGHTY; } |