MORTEVIELLE: Constify 3 more arrays
This commit is contained in:
parent
388b4a7b33
commit
ed69aaf999
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue