aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/font/base_font_bitmap.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
committerEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
commitb5a07fef8ebf29f7f44b15d9b34799c7e115fdad (patch)
tree76599c7b51aa6ad0447cb6ff6847f9eba54a679a /engines/wintermute/base/font/base_font_bitmap.h
parent2e82471240804df65acdf51c43ea044cbb81ae68 (diff)
downloadscummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.gz
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.bz2
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.zip
WINTERMUTE: Get rid of the C-prefix for class-definitions.
Diffstat (limited to 'engines/wintermute/base/font/base_font_bitmap.h')
-rw-r--r--engines/wintermute/base/font/base_font_bitmap.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/wintermute/base/font/base_font_bitmap.h b/engines/wintermute/base/font/base_font_bitmap.h
index 8af530cbc9..8a4f5af570 100644
--- a/engines/wintermute/base/font/base_font_bitmap.h
+++ b/engines/wintermute/base/font/base_font_bitmap.h
@@ -33,10 +33,10 @@
#include "engines/wintermute/base/font/base_font.h"
namespace WinterMute {
-class CBSubFrame;
-class CBFontBitmap : public CBFont {
+class BaseSubFrame;
+class BaseFontBitmap : public BaseFont {
public:
- DECLARE_PERSISTENT(CBFontBitmap, CBFont)
+ DECLARE_PERSISTENT(BaseFontBitmap, BaseFont)
bool loadBuffer(byte *Buffer);
bool loadFile(const char *filename);
virtual int getTextWidth(byte *text, int maxLength = -1);
@@ -44,19 +44,19 @@ public:
virtual void drawText(byte *text, int x, int y, int width, TTextAlign align = TAL_LEFT, int max_height = -1, int maxLength = -1);
virtual int getLetterHeight();
- CBFontBitmap(CBGame *inGame);
- virtual ~CBFontBitmap();
+ BaseFontBitmap(BaseGame *inGame);
+ virtual ~BaseFontBitmap();
bool getWidths();
- CBSprite *_sprite;
+ BaseSprite *_sprite;
int _widthsFrame;
bool _fontextFix;
int _numColumns;
int _tileHeight;
int _tileWidth;
byte _widths[NUM_CHARACTERS];
- CBSubFrame *_subframe;
+ BaseSubFrame *_subframe;
bool _wholeCell;
private: