[Scummvm-cvs-logs] SF.net SVN: scummvm: [26582] scummvm/trunk/engines/parallaction/font.cpp
peres001 at users.sourceforge.net
peres001 at users.sourceforge.net
Mon Apr 23 20:28:15 CEST 2007
Revision: 26582
http://scummvm.svn.sourceforge.net/scummvm/?rev=26582&view=rev
Author: peres001
Date: 2007-04-23 11:28:14 -0700 (Mon, 23 Apr 2007)
Log Message:
-----------
Fixed VS2005 warning
Modified Paths:
--------------
scummvm/trunk/engines/parallaction/font.cpp
Modified: scummvm/trunk/engines/parallaction/font.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/font.cpp 2007-04-23 18:18:19 UTC (rev 26581)
+++ scummvm/trunk/engines/parallaction/font.cpp 2007-04-23 18:28:14 UTC (rev 26582)
@@ -229,10 +229,6 @@
};
-// this flags comes from Aros Projects
-#define FPB_PROPORTIONAL 5
-#define FPF_PROPORTIONAL (1<<5)
-
class AmigaFont : public Font {
#include "common/pack-start.h"
@@ -262,7 +258,6 @@
AmigaDiskFont *_font;
uint32 _dataSize;
byte *_data;
- bool _proportional;
byte *_charData;
CharLoc *_charLoc;
uint16 *_charSpace;
@@ -317,13 +312,6 @@
if (_font->_charKern != 0)
_charKern = (uint16*)(_data + FROM_BE_32(_font->_charKern));
- _proportional = (_font->_flags & FPF_PROPORTIONAL);
-
- printf("xSize = %i\n", _font->_xSize);
- printf("charKern = %p\n", _charKern);
- printf("charSpace = %p\n", _charSpace);
- printf("proportional = %i\n", _proportional);
-
}
AmigaFont::~AmigaFont() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list