aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/font
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-25 05:08:13 +0200
committerEinar Johan Trøan Sømåen2012-07-25 05:08:13 +0200
commit45c5eb5cab069ea9ca4302a637f4621d460c790d (patch)
treef2dbf36c0bb33dfcc0eb40cb47c66a981bccadad /engines/wintermute/base/font
parent28759d7aa3b3b6ef9e01a806fe277ca83d7ee30d (diff)
downloadscummvm-rg350-45c5eb5cab069ea9ca4302a637f4621d460c790d.tar.gz
scummvm-rg350-45c5eb5cab069ea9ca4302a637f4621d460c790d.tar.bz2
scummvm-rg350-45c5eb5cab069ea9ca4302a637f4621d460c790d.zip
WINTERMUTE: Privatize/Protect variables that don't need to be public.
Diffstat (limited to 'engines/wintermute/base/font')
-rw-r--r--engines/wintermute/base/font/base_font_bitmap.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/wintermute/base/font/base_font_bitmap.h b/engines/wintermute/base/font/base_font_bitmap.h
index 8a4f5af570..79806be95f 100644
--- a/engines/wintermute/base/font/base_font_bitmap.h
+++ b/engines/wintermute/base/font/base_font_bitmap.h
@@ -47,7 +47,7 @@ public:
BaseFontBitmap(BaseGame *inGame);
virtual ~BaseFontBitmap();
-
+private:
bool getWidths();
BaseSprite *_sprite;
int _widthsFrame;
@@ -59,7 +59,6 @@ public:
BaseSubFrame *_subframe;
bool _wholeCell;
-private:
int getCharWidth(byte index);
void drawChar(byte c, int x, int y);