ENGINES: Remove a bunch of unused private member variables

All instances uncovered by clang warnings.
This commit is contained in:
Max Horn 2013-04-18 20:14:10 +02:00
parent cdfd5f85c8
commit b791edabf7
17 changed files with 12 additions and 29 deletions

View file

@ -117,8 +117,6 @@ private:
Glyph _glyph[SIZE_OF_CHAR_SET];
int _fontId;
public:
enum {
kAlignLeft,
@ -142,7 +140,7 @@ public:
};
FontRendererGui::FontRendererGui(Sword2Engine *vm, int fontId)
: _vm(vm), _fontId(fontId) {
: _vm(vm) {
byte *font = _vm->_resman->openResource(fontId);
SpriteInfo sprite;