diff options
Diffstat (limited to 'engines/mads/mads.cpp')
| -rw-r--r-- | engines/mads/mads.cpp | 2 | 
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); | 
