summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/inertia.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/inertia.c')
-rw-r--r--apps/plugins/puzzles/src/inertia.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/puzzles/src/inertia.c b/apps/plugins/puzzles/src/inertia.c
index c22d2e1..05fba4f 100644
--- a/apps/plugins/puzzles/src/inertia.c
+++ b/apps/plugins/puzzles/src/inertia.c
@@ -1866,10 +1866,10 @@ static void draw_player(drawing *dr, game_drawstate *ds, int x, int y,
x2 = (x1+x3) / 4;
y2 = (y1+y3) / 4;
- coords[d*4+0] = x + TILESIZE/2 + (int)((TILESIZE*3/7) * x1);
- coords[d*4+1] = y + TILESIZE/2 + (int)((TILESIZE*3/7) * y1);
- coords[d*4+2] = x + TILESIZE/2 + (int)((TILESIZE*3/7) * x2);
- coords[d*4+3] = y + TILESIZE/2 + (int)((TILESIZE*3/7) * y2);
+ coords[d*4+0] = x + TILESIZE/2 + (int)((TILESIZE*3/7) * x2);
+ coords[d*4+1] = y + TILESIZE/2 + (int)((TILESIZE*3/7) * y2);
+ coords[d*4+2] = x + TILESIZE/2 + (int)((TILESIZE*3/7) * x1);
+ coords[d*4+3] = y + TILESIZE/2 + (int)((TILESIZE*3/7) * y1);
}
draw_polygon(dr, coords, DIRECTIONS*2, COL_DEAD_PLAYER, COL_OUTLINE);
} else {