diff options
Diffstat (limited to 'engines/mads/mads.cpp')
| -rw-r--r-- | engines/mads/mads.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/mads.cpp b/engines/mads/mads.cpp index ec99b314a7..827c62ac61 100644 --- a/engines/mads/mads.cpp +++ b/engines/mads/mads.cpp @@ -74,8 +74,8 @@ void MADSEngine::initialise() { ResourcesManager::init(this); _events = new EventsManager(this); - _palette = Palette::init(this); - _font = Font::init(this); + _palette = new Palette(this); + _font = new Font(this); _screen = MSurface::init(true); _sound = new SoundManager(this, _mixer); _userInterface = UserInterface::init(this); |
