KYRA: Make all hex constants use uppercase letters.

Done with:
git ls-files "*.cpp" *".h" | xargs sed -i -e 's/0x\([0-9a-f]*\)/0x\U\1/g'
This commit is contained in:
Johannes Schickel 2013-01-09 06:00:35 +01:00
parent ff296175bc
commit 8d5b4b75d4
57 changed files with 835 additions and 835 deletions

View file

@ -393,14 +393,14 @@ void TIMInterpreter::displayText(uint16 textId, int16 flags, uint8 color) {
int y = 0;
if (_vm->gameFlags().use16ColorMode) {
if (color == 0xda)
color = 0xa1;
else if (color == 0xf2)
color = 0xe1;
if (color == 0xDA)
color = 0xA1;
else if (color == 0xF2)
color = 0xE1;
else if (flags < 0)
color = 0xe1;
color = 0xE1;
else
color = 0xc1;
color = 0xC1;
}
while (str[0]) {
@ -1083,7 +1083,7 @@ int TIMInterpreter_LoL::cmd_dialogueBox(const uint16 *param) {
int cnt = 0;
for (int i = 1; i < 4; i++) {
if (param[i] != 0xffff) {
if (param[i] != 0xFFFF) {
tmpStr[i-1] = getTableString(param[i]);
cnt++;
} else {