summaryrefslogtreecommitdiff
path: root/src/tile.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tile.rs')
-rw-r--r--src/tile.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tile.rs b/src/tile.rs
index aa950df..d6f5c0e 100644
--- a/src/tile.rs
+++ b/src/tile.rs
@@ -109,14 +109,14 @@ pub fn convert_angle_to_rad(angle: f32) -> f32 {
}
pub fn flip(tile: Tile) -> Tile {
- let mut t = tile.clone();
+ let mut t = tile;
t.source.x *= -1.0;
t.source.x -= t.source.w;
t
}
pub fn rotate(tile: Tile, angle: f32) -> Tile {
- let mut t = tile.clone();
+ let mut t = tile;
t.properties.rotation = convert_angle_to_rad(angle);
t
}