aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BFontBitmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BFontBitmap.cpp')
-rw-r--r--engines/wintermute/Base/BFontBitmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/Base/BFontBitmap.cpp b/engines/wintermute/Base/BFontBitmap.cpp
index 06c6055101..45c2efbdb7 100644
--- a/engines/wintermute/Base/BFontBitmap.cpp
+++ b/engines/wintermute/Base/BFontBitmap.cpp
@@ -229,7 +229,7 @@ void CBFontBitmap::drawChar(byte c, int x, int y) {
if (_wholeCell) tileWidth = _tileWidth;
else tileWidth = _widths[c];
- CBPlatform::SetRect(&rect, col * _tileWidth, row * _tileHeight, col * _tileWidth + tileWidth, (row + 1)*_tileHeight);
+ CBPlatform::setRect(&rect, col * _tileWidth, row * _tileHeight, col * _tileWidth + tileWidth, (row + 1)*_tileHeight);
bool handled = false;
if (_sprite) {
_sprite->GetCurrentFrame();