minor tweaks

svn-id: r35036
This commit is contained in:
Max Horn 2008-11-13 11:20:43 +00:00
parent 8e3485f158
commit eb27307c12
2 changed files with 3 additions and 2 deletions

View File

@ -51,11 +51,12 @@ int NewFont::getCharWidth(byte chr) const {
template <typename PixelType>
void drawCharIntern(byte *ptr, uint pitch, const bitmap_t *src, int h, int minX, int maxX, const PixelType color) {
const bitmap_t maxXMask = ~((1 << (16-maxX)) - 1);
while (h-- > 0) {
bitmap_t buffer = READ_UINT16(src);
src++;
buffer &= ~((1 << (16-maxX)) - 1);
buffer &= maxXMask;
buffer <<= minX;
PixelType *tmp = (PixelType *)ptr;
while (buffer != 0) {

View File

@ -90,7 +90,7 @@ public:
virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const;
};
typedef unsigned short bitmap_t; /* bitmap image unit size*/
typedef uint16 bitmap_t; /* bitmap image unit size*/
struct BBX {
int8 w;