From b4efc0d44810c85a5cec50c8457bc1ab0aedc49c Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Thu, 17 Aug 2017 13:25:16 -0400 Subject: Mines: hack for rockbox polygon drawing --- mines.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mines.c') diff --git a/mines.c b/mines.c index 0a2407e..706777c 100644 --- a/mines.c +++ b/mines.c @@ -2870,12 +2870,12 @@ static void draw_tile(drawing *dr, game_drawstate *ds, coords[(n)*2+0] = x + (int)(TILE_SIZE * (dx)); \ coords[(n)*2+1] = y + (int)(TILE_SIZE * (dy)); \ } while (0) - SETCOORD(0, 0.6F, 0.35F); - SETCOORD(1, 0.6F, 0.7F); - SETCOORD(2, 0.8F, 0.8F); - SETCOORD(3, 0.25F, 0.8F); - SETCOORD(4, 0.55F, 0.7F); - SETCOORD(5, 0.55F, 0.35F); + SETCOORD(0, 0.6F, 0.7F); + SETCOORD(1, 0.8F, 0.8F); + SETCOORD(2, 0.25F, 0.8F); + SETCOORD(3, 0.55F, 0.7F); + SETCOORD(4, 0.55F, 0.35F); + SETCOORD(5, 0.6F, 0.35F); draw_polygon(dr, coords, 6, COL_FLAGBASE, COL_FLAGBASE); SETCOORD(0, 0.6F, 0.2F); -- cgit v1.1