aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/mads.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-19 21:28:54 -0500
committerPaul Gilbert2014-02-19 21:28:54 -0500
commitc687d3f64cc5ac6ec09539129c5f8b0d3a7148ad (patch)
tree736c1405cc98590d733e7e2eb3c26ba45c1c36de /engines/mads/mads.cpp
parent5c565797e5516de97686650be8cc810007111641 (diff)
downloadscummvm-rg350-c687d3f64cc5ac6ec09539129c5f8b0d3a7148ad.tar.gz
scummvm-rg350-c687d3f64cc5ac6ec09539129c5f8b0d3a7148ad.tar.bz2
scummvm-rg350-c687d3f64cc5ac6ec09539129c5f8b0d3a7148ad.zip
MADS: Cleanup of palette code, updated old-style 4 byte RGB usage to 3 bytes
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 0ddb6bf401..36b5ec51f5 100644
--- a/engines/mads/mads.cpp
+++ b/engines/mads/mads.cpp
@@ -71,7 +71,7 @@ void MADSEngine::initialise() {
MSprite::setVm(this);
_events = new EventsManager(this);
- _palette = new Palette(this);
+ _palette = Palette::init(this);
_font = Font::init(this);
_resources = new ResourcesManager(this);
_screen = MSurface::init(true);