diff options
| author | Einar Johan Trøan Sømåen | 2012-06-26 02:27:33 +0200 | 
|---|---|---|
| committer | Einar Johan Trøan Sømåen | 2012-06-26 02:27:33 +0200 | 
| commit | cc56ba01e470f9af9f16724acbda58f67852d284 (patch) | |
| tree | 133962ec1fcb4e414e01a11cd8a2b763181ca3cd /engines/wintermute/Base/BFontBitmap.cpp | |
| parent | 382e3b097eacf79722d12c0e402c3300488436dd (diff) | |
| download | scummvm-rg350-cc56ba01e470f9af9f16724acbda58f67852d284.tar.gz scummvm-rg350-cc56ba01e470f9af9f16724acbda58f67852d284.tar.bz2 scummvm-rg350-cc56ba01e470f9af9f16724acbda58f67852d284.zip  | |
WINTERMUTE: Rename FuncName->funcName in Brenderer/BrendererSDL
Diffstat (limited to 'engines/wintermute/Base/BFontBitmap.cpp')
| -rw-r--r-- | engines/wintermute/Base/BFontBitmap.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/BFontBitmap.cpp b/engines/wintermute/Base/BFontBitmap.cpp index e88a6f0589..31a667bcbe 100644 --- a/engines/wintermute/Base/BFontBitmap.cpp +++ b/engines/wintermute/Base/BFontBitmap.cpp @@ -138,11 +138,11 @@ int CBFontBitmap::TextHeightDraw(byte  *text, int x, int y, int width, TTextAlig  	bool new_line = false;
  	bool long_line = false;
 -	if (draw) Game->_renderer->StartSpriteBatch();
 +	if (draw) Game->_renderer->startSpriteBatch();
  	while (!done) {
  		if (max_height > 0 && (NumLines + 1)*_tileHeight > max_height) {
 -			if (draw) Game->_renderer->EndSpriteBatch();
 +			if (draw) Game->_renderer->endSpriteBatch();
  			return NumLines * _tileHeight;
  		}
 @@ -208,7 +208,7 @@ int CBFontBitmap::TextHeightDraw(byte  *text, int x, int y, int width, TTextAlig  		}
  	}
 -	if (draw) Game->_renderer->EndSpriteBatch();
 +	if (draw) Game->_renderer->endSpriteBatch();
  	return NumLines * _tileHeight;
  }
  | 
