summaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-12-15 14:54:55 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-12-15 14:54:55 +0100
commit8c086739e1344fb8789e89074dd962c5719ab030 (patch)
tree86ae878cd5f90a82b7fee454e4adae69de542bb4 /src/map.c
parent7b956089e6ba5162fb0b667f1c0a60f6ece90c38 (diff)
local session id generation, bullet icon drop, refactor
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index e466f5f..bc8384f 100644
--- a/src/map.c
+++ b/src/map.c
@@ -141,8 +141,8 @@ float get_height_of_tile_under_coords(platform_window* window, float tocheckx, f
}
inline int get_tile_width(platform_window* window) {
- int tile_width = window->height / 14;
- if (window->width > window->height) tile_width = window->width / 14;
+ int tile_width = window->height / 30;
+ if (window->width > window->height) tile_width = window->width / 30;
return tile_width;
}