diff options
author | Einar Johan Trøan Sømåen | 2012-06-26 13:43:16 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-26 13:43:16 +0200 |
commit | b46750869c72df19d29b5cad4aac483b0046afc2 (patch) | |
tree | 8fa4d91c5f7159b898c77ccc7bb45a442acdd86b /engines/wintermute/video | |
parent | e1597f38ff1eec5aa3cbbbe78bda069decdd14c6 (diff) | |
download | scummvm-rg350-b46750869c72df19d29b5cad4aac483b0046afc2.tar.gz scummvm-rg350-b46750869c72df19d29b5cad4aac483b0046afc2.tar.bz2 scummvm-rg350-b46750869c72df19d29b5cad4aac483b0046afc2.zip |
WINTERMUTE: Rename FuncName->funcName in the Font-classes.
Diffstat (limited to 'engines/wintermute/video')
-rw-r--r-- | engines/wintermute/video/VidPlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/video/VidPlayer.cpp b/engines/wintermute/video/VidPlayer.cpp index 7f35e022cf..e511f52284 100644 --- a/engines/wintermute/video/VidPlayer.cpp +++ b/engines/wintermute/video/VidPlayer.cpp @@ -286,7 +286,7 @@ HRESULT CVidPlayer::display() { if (m_ShowSubtitle) { CBFont *font = Game->_videoFont ? Game->_videoFont : Game->_systemFont; int Height = font->GetTextHeight((BYTE *)m_Subtitles[_currentSubtitle]->_text, Game->_renderer->_width); - font->DrawText((byte *)_subtitles[m_CurrentSubtitle]->_text, 0, Game->_renderer->_height - Height - 5, Game->_renderer->_width, TAL_CENTER); + font->drawText((byte *)_subtitles[m_CurrentSubtitle]->_text, 0, Game->_renderer->_height - Height - 5, Game->_renderer->_width, TAL_CENTER); } return res; |