aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/font
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-27 16:08:46 +0200
committerEinar Johan Trøan Sømåen2012-07-27 16:08:46 +0200
commita9e9ed7d3b5411e5eaf44ac87f1a10ce53e962d9 (patch)
tree1ea670d031a868460a070386f16d4fb59db05838 /engines/wintermute/base/font
parenta190bb8fdc5959bb2b529baab0d45bc31d2f467a (diff)
downloadscummvm-rg350-a9e9ed7d3b5411e5eaf44ac87f1a10ce53e962d9.tar.gz
scummvm-rg350-a9e9ed7d3b5411e5eaf44ac87f1a10ce53e962d9.tar.bz2
scummvm-rg350-a9e9ed7d3b5411e5eaf44ac87f1a10ce53e962d9.zip
WINTERMUTE: Formatting "var_name"->"varName"
Diffstat (limited to 'engines/wintermute/base/font')
-rw-r--r--engines/wintermute/base/font/base_font.cpp2
-rw-r--r--engines/wintermute/base/font/base_font_bitmap.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/base/font/base_font.cpp b/engines/wintermute/base/font/base_font.cpp
index 34ff717ae5..1f938dfac2 100644
--- a/engines/wintermute/base/font/base_font.cpp
+++ b/engines/wintermute/base/font/base_font.cpp
@@ -53,7 +53,7 @@ BaseFont::~BaseFont() {
//////////////////////////////////////////////////////////////////////
-void BaseFont::drawText(byte *text, int x, int y, int width, TTextAlign align, int max_height, int maxLength) {
+void BaseFont::drawText(byte *text, int x, int y, int width, TTextAlign align, int maxHeight, int maxLength) {
}
diff --git a/engines/wintermute/base/font/base_font_bitmap.cpp b/engines/wintermute/base/font/base_font_bitmap.cpp
index 9431c730bd..152e08273d 100644
--- a/engines/wintermute/base/font/base_font_bitmap.cpp
+++ b/engines/wintermute/base/font/base_font_bitmap.cpp
@@ -69,8 +69,8 @@ BaseFontBitmap::~BaseFontBitmap() {
//////////////////////////////////////////////////////////////////////
-void BaseFontBitmap::drawText(byte *text, int x, int y, int width, TTextAlign align, int max_height, int maxLength) {
- textHeightDraw(text, x, y, width, align, true, max_height, maxLength);
+void BaseFontBitmap::drawText(byte *text, int x, int y, int width, TTextAlign align, int maxHeight, int maxLength) {
+ textHeightDraw(text, x, y, width, align, true, maxHeight, maxLength);
}