X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.c;h=f6f75061d9464e978d05506cdee064b4bf09fb4a;hb=f73fd0cea8ac4e9836ea9a4c12c89be0acef03ba;hp=342f346df3703fabf00f668a17c19b528d67f162;hpb=9c92df9586b75ab4afc1345e944108e95e2f8174;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index 342f346d..f6f75061 100644 --- a/src/tape.c +++ b/src/tape.c @@ -195,7 +195,7 @@ static void DrawVideoDisplay_Graphics(unsigned int state, unsigned int value) static struct { int graphic; - struct Rect *pos; + struct XY *pos; } video_pos[NUM_TAPE_FUNCTIONS][NUM_TAPE_FUNCTION_PARTS] = { @@ -253,7 +253,7 @@ static void DrawVideoDisplay_Graphics(unsigned int state, unsigned int value) for (j = 0; j < NUM_TAPE_FUNCTION_PARTS; j++) /* label or symbol */ { int graphic = video_pos[i][j].graphic; - struct Rect *pos = video_pos[i][j].pos; + struct XY *pos = video_pos[i][j].pos; if (graphic == -1 || pos->x == -1 || @@ -1217,7 +1217,7 @@ void AutoPlayTape() static struct { int graphic; - struct Rect *pos; + struct XY *pos; int gadget_id; char *infotext; } tapebutton_info[NUM_TAPE_BUTTONS] = @@ -1256,7 +1256,7 @@ void CreateTapeButtons() for (i = 0; i < NUM_TAPE_BUTTONS; i++) { struct GraphicInfo *gfx = &graphic_info[tapebutton_info[i].graphic]; - struct Rect *pos = tapebutton_info[i].pos; + struct XY *pos = tapebutton_info[i].pos; struct GadgetInfo *gi; int gd_x = gfx->src_x; int gd_y = gfx->src_y;