For consistency, use upper-case letter in hex constant.
svn-id: r41938
This commit is contained in:
parent
4e17f7251d
commit
d120ca8f5c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue