summaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2023-10-29 16:53:33 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2023-10-29 16:53:33 +0100
commit04024078984bbaf84f34352061da2a224ecdb0b0 (patch)
treee576cdd0451e06d96c71131c551b1bc32d633f0d /src/map.c
parent61c5fb1e253f31d2faa3a0fc970ce4e18f32b205 (diff)
fix throwable collision
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index 8d5e26b..1eddf90 100644
--- a/src/map.c
+++ b/src/map.c
@@ -398,6 +398,6 @@ inline map_info get_map_info(platform_window* window) {
info.tile_width = get_tile_width(window);
info.tile_height = get_tile_height(window);
info.px_incline = 0.0f; //info.tile_width/3; // info.tile_width/3; // offset*info.tile_width;
- info.px_raised_per_h = info.tile_height/2.5;
+ info.px_raised_per_h = info.tile_height/5.0f;
return info;
} \ No newline at end of file