aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/dialogs.cpp
diff options
context:
space:
mode:
authorD G Turner2011-02-20 03:20:06 +0000
committerD G Turner2011-02-20 03:20:06 +0000
commit10e2cec6b95f0e185f0522fdc7f10a076de24c7e (patch)
treec200c531660bdb43fcf19f850a153ce69a46df91 /engines/m4/dialogs.cpp
parent292f1971426de8d7947ed2d2792902c6bfef1424 (diff)
downloadscummvm-rg350-10e2cec6b95f0e185f0522fdc7f10a076de24c7e.tar.gz
scummvm-rg350-10e2cec6b95f0e185f0522fdc7f10a076de24c7e.tar.bz2
scummvm-rg350-10e2cec6b95f0e185f0522fdc7f10a076de24c7e.zip
M4: Updated for OSystem Palette RGBA->RGB Change.
Diffstat (limited to 'engines/m4/dialogs.cpp')
-rw-r--r--engines/m4/dialogs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/m4/dialogs.cpp b/engines/m4/dialogs.cpp
index 101f21f48c..da828ccf5b 100644
--- a/engines/m4/dialogs.cpp
+++ b/engines/m4/dialogs.cpp
@@ -43,8 +43,8 @@ static void strToLower(char *s) {
}
const RGB8 DIALOG_PALETTE[8] = {
- {0x80, 0x80, 0x80, 0xff}, {0x90, 0x90, 0x90, 0xff}, {0x70, 0x70, 0x70, 0xff}, {0x9c, 0x9c, 0x9c, 0xff},
- {0x80, 0x80, 0x80, 0xff}, {0x90, 0x90, 0x90, 0xff}, {0xDC, 0xDC, 0xDC, 0xff}, {0x00, 0x00, 0x00, 0xff}
+ {0x80, 0x80, 0x80}, {0x90, 0x90, 0x90}, {0x70, 0x70, 0x70}, {0x9c, 0x9c, 0x9c},
+ {0x80, 0x80, 0x80}, {0x90, 0x90, 0x90}, {0xDC, 0xDC, 0xDC}, {0x00, 0x00, 0x00}
};
#define ROR16(v,amt) (((uint16)(v) >> amt) | ((uint16)(v) << (16 - amt)))