diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-12-15 14:54:55 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-12-15 14:54:55 +0100 |
| commit | 8c086739e1344fb8789e89074dd962c5719ab030 (patch) | |
| tree | 86ae878cd5f90a82b7fee454e4adae69de542bb4 /src/map.c | |
| parent | 7b956089e6ba5162fb0b667f1c0a60f6ece90c38 (diff) | |
local session id generation, bullet icon drop, refactor
Diffstat (limited to 'src/map.c')
| -rw-r--r-- | src/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |
