aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/interface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-11 21:40:49 -0400
committerPaul Gilbert2014-03-11 21:40:49 -0400
commit41e86d553e087e1b4276748064fb5893859196b2 (patch)
treed3bc56c1add10eafe6f0fcef4045cc590b8c0cd8 /engines/mads/interface.cpp
parent5047c118f1b3bb60136bc4088e9db53f38dbb087 (diff)
downloadscummvm-rg350-41e86d553e087e1b4276748064fb5893859196b2.tar.gz
scummvm-rg350-41e86d553e087e1b4276748064fb5893859196b2.tar.bz2
scummvm-rg350-41e86d553e087e1b4276748064fb5893859196b2.zip
MADS: Renamed game palette to palette flags
Diffstat (limited to 'engines/mads/interface.cpp')
-rw-r--r--engines/mads/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/interface.cpp b/engines/mads/interface.cpp
index 68e2341ccc..0c983dc133 100644
--- a/engines/mads/interface.cpp
+++ b/engines/mads/interface.cpp
@@ -49,7 +49,7 @@ void InterfaceSurface::load(const Common::String &resName) {
// Load in the palette
Common::SeekableReadStream *palStream = madsPack.getItemStream(0);
- uint32 *gamePalP = &_vm->_palette->_gamePalette[0];
+ uint32 *gamePalP = &_vm->_palette->_palFlags[0];
byte *palP = &_vm->_palette->_mainPalette[0];
for (int i = 0; i < 16; ++i, gamePalP++, palP += 3) {