diff options
author | Johannes Schickel | 2010-09-05 22:56:03 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-09-05 22:56:03 +0000 |
commit | b6663bb942780ed9786992ca1fd757fc96f1412d (patch) | |
tree | cff146ea268ae61cd0a68e5576e39b3764936541 | |
parent | 8bd741d41b6fc796fce03e3cda1228b57ac57bce (diff) | |
download | scummvm-rg350-b6663bb942780ed9786992ca1fd757fc96f1412d.tar.gz scummvm-rg350-b6663bb942780ed9786992ca1fd757fc96f1412d.tar.bz2 scummvm-rg350-b6663bb942780ed9786992ca1fd757fc96f1412d.zip |
KYRA: Constify some tables.
svn-id: r52578
-rw-r--r-- | engines/kyra/text_lol.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/kyra/text_lol.cpp b/engines/kyra/text_lol.cpp index d5264be483..7f9531507c 100644 --- a/engines/kyra/text_lol.cpp +++ b/engines/kyra/text_lol.cpp @@ -204,10 +204,12 @@ void TextDisplayer_LoL::printDialogueText(int dim, char *str, EMCState *script, } void TextDisplayer_LoL::printMessage(uint16 type, const char *str, ...) { - static uint8 textColors256[] = { 0xfe, 0xa2, 0x84, 0x97, 0x9F }; - static uint8 textColors16[] = { 0x33, 0xaa, 0x88, 0x55, 0x99 }; - static uint8 soundEffect[] = { 0x0B, 0x00, 0x2B, 0x1B, 0x00 }; + static const uint8 textColors256[] = { 0xfe, 0xa2, 0x84, 0x97, 0x9F }; + static const uint8 textColors16[] = { 0x33, 0xaa, 0x88, 0x55, 0x99 }; + static const uint8 soundEffect[] = { 0x0B, 0x00, 0x2B, 0x1B, 0x00 }; + const uint8 *textColors = _vm->gameFlags().use16ColorMode ? textColors16 : textColors256; + if (type & 4) type ^= 4; else |