mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-25 03:07:06 +00:00
typo/cleanup
svn-id: r7174
This commit is contained in:
parent
b4165b0242
commit
dabbbde957
@ -234,18 +234,18 @@ void CharsetRendererOld256::printChar(int chr) {
|
||||
}
|
||||
|
||||
// FIXME
|
||||
if (_left < _strLeft)
|
||||
if (_strLeft > _left)
|
||||
_strLeft = _left;
|
||||
|
||||
_left += getCharWidth(chr);
|
||||
|
||||
if (_left > _strRight) {
|
||||
if (_strRight < _left) {
|
||||
_strRight = _left;
|
||||
if (_dropShadow)
|
||||
_strRight++;
|
||||
}
|
||||
|
||||
if (_top + h > _strBottom)
|
||||
if (_strBottom < _top + h)
|
||||
_strBottom = _top + h;
|
||||
}
|
||||
|
||||
|
@ -1014,7 +1014,7 @@ void Scumm::initRoomSubBlocks() {
|
||||
}
|
||||
|
||||
//
|
||||
// Load sccale data
|
||||
// Load scale data
|
||||
//
|
||||
if (_features & GF_OLD_BUNDLE)
|
||||
ptr = 0; // TODO ?
|
||||
|
Loading…
Reference in New Issue
Block a user