diff options
author | Filippos Karapetis | 2015-12-23 22:10:33 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:43:17 +0100 |
commit | d30ee82cdbda9a92522be6c506ded7def89bf6ba (patch) | |
tree | b8b2472122a7ae7e9236ee0cee208d583d2055fd | |
parent | 52c7fcbfe5e65d47f0aa0b6169f95b529d6d9dc2 (diff) | |
download | scummvm-rg350-d30ee82cdbda9a92522be6c506ded7def89bf6ba.tar.gz scummvm-rg350-d30ee82cdbda9a92522be6c506ded7def89bf6ba.tar.bz2 scummvm-rg350-d30ee82cdbda9a92522be6c506ded7def89bf6ba.zip |
LAB: Use camelCase for a variable name
-rw-r--r-- | engines/lab/engine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 87380c3c4f..4c1266438d 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -105,7 +105,7 @@ enum AltButtons { kButtonFollowCrumbs }; -static char initcolors[] = { '\x00', '\x00', '\x00', '\x30', +static char initColors[] = { '\x00', '\x00', '\x00', '\x30', '\x30', '\x30', '\x10', '\x10', '\x10', '\x14', '\x14', '\x14', '\x20', '\x20', '\x20', '\x24', @@ -304,7 +304,7 @@ bool LabEngine::doUse(uint16 curInv) { _curFileName = " "; _closeDataPtr = nullptr; doMap(_roomNum); - _graphics->setPalette(initcolors, 8); + _graphics->setPalette(initColors, 8); _graphics->drawMessage(nullptr, false); _graphics->drawPanel(); return true; @@ -397,7 +397,7 @@ void LabEngine::mainGameLoop() { bool forceDraw = false; bool gotMessage = true; - _graphics->setPalette(initcolors, 8); + _graphics->setPalette(initColors, 8); _closeDataPtr = nullptr; _roomNum = 1; @@ -928,7 +928,7 @@ void LabEngine::processAltButton(uint16 &curInv, uint16 &lastInv, uint16 buttonI if (doit) { _graphics->drawMessage("Disk operation failed.", false); - _graphics->setPalette(initcolors, 8); + _graphics->setPalette(initColors, 8); _system->delayMillis(1000); } break; |