summaryrefslogtreecommitdiff
path: root/gfx.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-15 14:16:14 +0000
committertron <tron@openttd.org>2005-07-15 14:16:14 +0000
commit8f71864bef912a9cd8b8f649c5acbe638d48fc24 (patch)
tree37a7c3272357635a96d29652c78fbc738b0c782d /gfx.c
parentb21ee889fec9b8d197692969855cb54675edfa6d (diff)
downloadopenttd-8f71864bef912a9cd8b8f649c5acbe638d48fc24.tar.xz
(svn r2571) Add explicit type Pixel for ... Pixels
Diffstat (limited to 'gfx.c')
-rw-r--r--gfx.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gfx.c b/gfx.c
index bbd9d1efe..17d850a72 100644
--- a/gfx.c
+++ b/gfx.c
@@ -11,7 +11,7 @@ Colour _cur_palette[256];
static void GfxMainBlitter(const Sprite *sprite, int x, int y, int mode);
static int _stringwidth_out;
-static byte _cursor_backup[64*64];
+static Pixel _cursor_backup[64 * 64];
static Rect _invalid_rect;
static const byte *_color_remap_ptr;
static byte _string_colorremap[3];
@@ -37,8 +37,8 @@ void memcpy_pitch(void *d, void *s, int w, int h, int spitch, int dpitch)
void GfxScroll(int left, int top, int width, int height, int xo, int yo)
{
- byte *src;
- byte *dst;
+ const Pixel *src;
+ Pixel *dst;
int p;
int ht;
@@ -109,7 +109,7 @@ void GfxScroll(int left, int top, int width, int height, int xo, int yo)
void GfxFillRect(int left, int top, int right, int bottom, int color)
{
DrawPixelInfo *dpi = _cur_dpi;
- byte *dst;
+ Pixel *dst;
const int otop = top;
const int oleft = left;
@@ -574,7 +574,7 @@ typedef struct BlitterParams {
int start_x, start_y;
const byte* sprite;
const byte* sprite_org;
- byte *dst;
+ Pixel *dst;
int mode;
int width, height;
int width_org;
@@ -589,7 +589,7 @@ static void GfxBlitTileZoomIn(BlitterParams *bp)
const byte* src;
int num, skip;
byte done;
- byte *dst;
+ Pixel *dst;
const byte* ctab;
if (bp->mode & 1) {
@@ -718,7 +718,7 @@ static void GfxBlitTileZoomIn(BlitterParams *bp)
static void GfxBlitZoomInUncomp(BlitterParams *bp)
{
const byte *src = bp->sprite;
- byte *dst = bp->dst;
+ Pixel *dst = bp->dst;
int height = bp->height;
int width = bp->width;
int i;
@@ -791,7 +791,7 @@ static void GfxBlitTileZoomMedium(BlitterParams *bp)
const byte* src;
int num, skip;
byte done;
- byte *dst;
+ Pixel *dst;
const byte* ctab;
if (bp->mode & 1) {
@@ -945,7 +945,7 @@ static void GfxBlitTileZoomMedium(BlitterParams *bp)
static void GfxBlitZoomMediumUncomp(BlitterParams *bp)
{
const byte *src = bp->sprite;
- byte *dst = bp->dst;
+ Pixel *dst = bp->dst;
int height = bp->height;
int width = bp->width;
int i;
@@ -996,7 +996,7 @@ static void GfxBlitTileZoomOut(BlitterParams *bp)
const byte* src;
int num, skip;
byte done;
- byte *dst;
+ Pixel *dst;
const byte* ctab;
if (bp->mode & 1) {
@@ -1209,7 +1209,7 @@ static void GfxBlitTileZoomOut(BlitterParams *bp)
static void GfxBlitZoomOutUncomp(BlitterParams *bp)
{
const byte* src = bp->sprite;
- byte *dst = bp->dst;
+ Pixel *dst = bp->dst;
int height = bp->height;
int width = bp->width;
int i;