diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1001,7 +1001,7 @@ struct db_ball *db_map_get_balls(struct db_map *map) return map->ball_head; } -int +int db_map_tile_player_collides(struct db_map *map, int x, int y) { int i; @@ -1010,7 +1010,7 @@ db_map_tile_player_collides(struct db_map *map, int x, int y) return (map->p_col[i / 8] & (1 << (i % 8))) != 0; } -int +int db_map_tile_ball_collides(struct db_map *map, int x, int y) { int i; |