diff options
-rw-r--r-- | engines/mortevielle/outtext.cpp | 4 | ||||
-rw-r--r-- | engines/mortevielle/utils.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/mortevielle/outtext.cpp b/engines/mortevielle/outtext.cpp index 81760d1afa..6bb775a423 100644 --- a/engines/mortevielle/outtext.cpp +++ b/engines/mortevielle/outtext.cpp @@ -189,8 +189,8 @@ void TextHandler::loadAniFile(Common::String filename, int32 skipSize, int lengt void TextHandler::taffich() { static const byte _rang[16] = {15, 14, 11, 7, 13, 12, 10, 6, 9, 5, 3, 1, 2, 4, 8, 0}; - byte tran1[] = { 121, 121, 138, 139, 120 }; - byte tran2[] = { 150, 150, 152, 152, 100, 110, 159, 100, 100 }; + static const byte tran1[] = { 121, 121, 138, 139, 120 }; + static const byte tran2[] = { 150, 150, 152, 152, 100, 110, 159, 100, 100 }; int cx, handle, npal; int32 lgt; diff --git a/engines/mortevielle/utils.cpp b/engines/mortevielle/utils.cpp index ca6bdcdfc6..2c1a501b19 100644 --- a/engines/mortevielle/utils.cpp +++ b/engines/mortevielle/utils.cpp @@ -182,7 +182,7 @@ void MortevielleEngine::addKeypress(Common::Event &evt) { } -static byte CURSOR_ARROW_DATA[16 * 16] = { +static const byte CURSOR_ARROW_DATA[16 * 16] = { 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |