aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/font/base_font_bitmap.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2013-04-19 18:13:42 +0200
committerEinar Johan Trøan Sømåen2013-04-19 18:13:42 +0200
commita2fb3dfe9e6de6241962a41b9d98e38e84441b44 (patch)
tree355363efd43e2083041ea5849ff330dcdab153a8 /engines/wintermute/base/font/base_font_bitmap.h
parent315550c0f8ac2019fe45f0632917c0fb26093427 (diff)
downloadscummvm-rg350-a2fb3dfe9e6de6241962a41b9d98e38e84441b44.tar.gz
scummvm-rg350-a2fb3dfe9e6de6241962a41b9d98e38e84441b44.tar.bz2
scummvm-rg350-a2fb3dfe9e6de6241962a41b9d98e38e84441b44.zip
WINTERMUTE: Replace a few more ints by int32s.
Diffstat (limited to 'engines/wintermute/base/font/base_font_bitmap.h')
-rw-r--r--engines/wintermute/base/font/base_font_bitmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/base/font/base_font_bitmap.h b/engines/wintermute/base/font/base_font_bitmap.h
index e380a949e2..73cafb5d75 100644
--- a/engines/wintermute/base/font/base_font_bitmap.h
+++ b/engines/wintermute/base/font/base_font_bitmap.h
@@ -50,11 +50,11 @@ public:
private:
bool getWidths();
BaseSprite *_sprite;
- int _widthsFrame;
+ int32 _widthsFrame;
bool _fontextFix;
- int _numColumns;
- int _tileHeight;
- int _tileWidth;
+ int32 _numColumns;
+ int32 _tileHeight;
+ int32 _tileWidth;
byte _widths[NUM_CHARACTERS];
BaseSubFrame *_subframe;
bool _wholeCell;