summaryrefslogtreecommitdiff
path: root/src/tile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tile.c')
-rw-r--r--src/tile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tile.c b/src/tile.c
index bbcddfb..45d7eff 100644
--- a/src/tile.c
+++ b/src/tile.c
@@ -4,7 +4,8 @@ DRAW {
if (!this->tile)
return;
fgcolor();
- const auto pos = v2_sub(POS, v2(cfg.tile_width/2., cfg.tile_height/2.));
+ const auto pos =
+ v2_sub(POS, v2(cfg.tile_width / 2., cfg.tile_height / 2.));
auto tile = this->tile;
if (this->flip_x)
tile ^= tiled_flip_x;