(svn r2571) Add explicit type Pixel for ... Pixels

This commit is contained in:
tron
2005-07-15 14:16:14 +00:00
parent ddc939f0ed
commit 462b0d6686
6 changed files with 32 additions and 33 deletions

3
gfx.h
View File

@@ -1,6 +1,7 @@
#ifndef GFX_H
#define GFX_H
typedef byte Pixel;
typedef struct ColorList {
byte unk0, unk1, unk2;
@@ -10,7 +11,7 @@ typedef struct ColorList {
} ColorList;
struct DrawPixelInfo {
byte *dst_ptr;
Pixel *dst_ptr;
int left, top, width, height;
int pitch;
uint16 zoom;