diff options
author | P. J. McDermott <pj@pehjota.net> | 2021-03-27 17:37:18 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2021-03-27 17:37:18 (EDT) |
commit | 33d93b2a41f0595a650dc2532423c9c02136ce18 (patch) | |
tree | 957ccbbd7937d4f4dd9ab782800a03e463ab2d84 | |
parent | 112f368dc6ea782712ede051c3051d2c0779efcf (diff) | |
download | dodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.zip dodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.tar.gz dodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.tar.bz2 |
map: Remove trailing spaces
-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; |