summaryrefslogtreecommitdiff
path: root/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx.h')
-rw-r--r--gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gfx.h b/gfx.h
index 9b8bd8814..8c44123c9 100644
--- a/gfx.h
+++ b/gfx.h
@@ -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;