gfx.h
changeset 2062 00f7d339fdcb
parent 1991 f3d5e35731a2
child 2097 82b1e11883fd
--- a/gfx.h	Fri Jul 15 12:16:16 2005 +0000
+++ b/gfx.h	Fri Jul 15 14:16:14 2005 +0000
@@ -1,6 +1,7 @@
 #ifndef GFX_H
 #define GFX_H
 
+typedef byte Pixel;
 
 typedef struct ColorList {
 	byte unk0, unk1, unk2;
@@ -10,7 +11,7 @@
 } ColorList;
 
 struct DrawPixelInfo {
-	byte *dst_ptr;
+	Pixel *dst_ptr;
 	int left, top, width, height;
 	int pitch;
 	uint16 zoom;