diff options
author | Einar Johan Trøan Sømåen | 2012-07-08 22:10:15 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-07-08 22:10:15 +0200 |
commit | 5f7b45de34d4f34c543d47e1feead84c79654965 (patch) | |
tree | 2a58bf0eb515d849000cd32c03f4ce31ef950727 /engines/wintermute/UI/UIWindow.cpp | |
parent | 11e60e35a238118331c129f3797a2d791cbdb353 (diff) | |
download | scummvm-rg350-5f7b45de34d4f34c543d47e1feead84c79654965.tar.gz scummvm-rg350-5f7b45de34d4f34c543d47e1feead84c79654965.tar.bz2 scummvm-rg350-5f7b45de34d4f34c543d47e1feead84c79654965.zip |
WINTERMUTE: Rename FuncName/VarName -> funcName/varName in BSprite
Diffstat (limited to 'engines/wintermute/UI/UIWindow.cpp')
-rw-r--r-- | engines/wintermute/UI/UIWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/UI/UIWindow.cpp b/engines/wintermute/UI/UIWindow.cpp index b244d13490..44d2bc5743 100644 --- a/engines/wintermute/UI/UIWindow.cpp +++ b/engines/wintermute/UI/UIWindow.cpp @@ -179,7 +179,7 @@ HRESULT CUIWindow::display(int OffsetX, int OffsetY) { if (_alphaColor != 0) Game->_renderer->_forceAlphaColor = _alphaColor;
if (back) back->display(_posX + OffsetX, _posY + OffsetY, _width, _height);
- if (image) image->Draw(_posX + OffsetX, _posY + OffsetY, _transparent ? NULL : this);
+ if (image) image->draw(_posX + OffsetX, _posY + OffsetY, _transparent ? NULL : this);
if (!CBPlatform::IsRectEmpty(&_titleRect) && font && _text) {
font->drawText((byte *)_text, _posX + OffsetX + _titleRect.left, _posY + OffsetY + _titleRect.top, _titleRect.right - _titleRect.left, _titleAlign, _titleRect.bottom - _titleRect.top);
|