summaryrefslogtreecommitdiffstats
path: root/src/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/game.c b/src/game.c
index 183e0ad..0c94202 100644
--- a/src/game.c
+++ b/src/game.c
@@ -249,12 +249,8 @@ mf_game(long seed, int size, int fow, int reveal, int enemies,
}
for (i = 1; i < 1 + enemies; ++i) {
for (j = i + 1; j < 1 + enemies; ++j) {
- if (mf_char_collision(chars[i],
- chars[j],
- SDL_TRUE)
- == SDL_TRUE) {
- fr = 1;
- }
+ mf_char_collision(chars[i], chars[j],
+ SDL_TRUE);
}
}
mf_char_get_vector(chars[0], &game.player_cx,