mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
minor tweaks
svn-id: r35036
This commit is contained in:
parent
8e3485f158
commit
eb27307c12
@ -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) {
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user