diff -r 7d81e3a5d803 -r e4a2ed7e5613 src/gfx.cpp --- a/src/gfx.cpp Wed Mar 07 11:47:46 2007 +0000 +++ b/src/gfx.cpp Wed Mar 07 12:11:48 2007 +0000 @@ -44,11 +44,11 @@ Colour _cur_palette[256]; byte _stringwidth_table[FS_END][224]; -typedef enum BlitterModes { +enum BlitterMode { BM_NORMAL, BM_COLOUR_REMAP, BM_TRANSPARENT, -} BlitterMode; +}; static void GfxMainBlitter(const Sprite *sprite, int x, int y, BlitterMode mode); @@ -718,7 +718,7 @@ } } -typedef struct BlitterParams { +struct BlitterParams { int start_x, start_y; const byte *sprite; Pixel *dst; @@ -726,7 +726,7 @@ int width, height; int width_org; int pitch; -} BlitterParams; +}; static void GfxBlitTileZoomIn(BlitterParams *bp) {