diff options
Diffstat (limited to 'light-client/src/tilemap.rs')
-rw-r--r-- | light-client/src/tilemap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/light-client/src/tilemap.rs b/light-client/src/tilemap.rs index cf8c5eef..e7341efa 100644 --- a/light-client/src/tilemap.rs +++ b/light-client/src/tilemap.rs @@ -77,7 +77,7 @@ impl Tilemap { let src = self.tile_srcs[tile.0][idx]; self.tiles - .insert(pos, Sprite::new_tile(src).at(pos.as_vec2() + 0.5)); + .insert(pos, Sprite::new_tile(src).at(pos.as_vec2())); } pub fn draw(&self, ctx: &mut SpriteRenderer) { |