For consistency, use upper-case letter in hex constant.

svn-id: r41938
This commit is contained in:
Torbjörn Andersson 2009-06-28 22:20:28 +00:00
parent 4e17f7251d
commit d120ca8f5c

View file

@ -400,7 +400,7 @@ void OSystem_SDL::setWindowCaption(const char *caption) {
if (c < 0x80)
cap += c;
else {
cap += 0xc0 | (c >> 6);
cap += 0xC0 | (c >> 6);
cap += 0x80 | (c & 0x3F);
}
}