summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. 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)
commit33d93b2a41f0595a650dc2532423c9c02136ce18 (patch)
tree957ccbbd7937d4f4dd9ab782800a03e463ab2d84
parent112f368dc6ea782712ede051c3051d2c0779efcf (diff)
downloaddodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.zip
dodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.tar.gz
dodge-balls-33d93b2a41f0595a650dc2532423c9c02136ce18.tar.bz2
map: Remove trailing spaces
-rw-r--r--src/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index ea80751..f33782f 100644
--- a/src/map.c
+++ b/src/map.c
@@ -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;