home · contact · privacy
Fixed bug that led to endless loop in nearest_enemy_dir().
authorChristian Heller <c.heller@plomlompom.de>
Sat, 14 Dec 2013 05:16:50 +0000 (06:16 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 14 Dec 2013 05:16:50 +0000 (06:16 +0100)
src/ai.c
src/main.c

index 7efacf240293c17d9cc06f96e910ffccf75401c0..a4d4fbe09d15b03e8f3d5747dd272e59dc1ff056 100644 (file)
--- a/src/ai.c
+++ b/src/ai.c
@@ -66,7 +66,8 @@ static char nearest_enemy_dir(struct yx_uint16 origin)
         dist_max = world.map->size.x;
     }
     uint8_t escape = 0;
-    uint8_t dist, i, j;
+    uint8_t dist, j;
+    uint16_t i;
     for (dist = 1; !escape && dist <= dist_max; dist++)
     {
         char * path = try_malloc(dist + 1, f_name);
index 74ef761ddbb1b440cc384a880641657046628b8c..c9e468bbe3aab0d339792f61d66983d0bb6c42b6 100644 (file)
@@ -3,7 +3,7 @@
 #include "main.h" /* for world global */
 #include <stdlib.h> /* for atoi(), exit(), EXIT_FAILURE */
 #include <stdio.h> /* for FILE typedef, F_OK */
-#include <ncurses.h> /* for initscr(), noecho(), curs_set(), keypad(), raw() */
+#include <ncurses.h> /* for noecho(), curs_set(), keypad(), raw() */
 #include <time.h> /* for time() */
 #include <unistd.h> /* for getopt(), optarg */
 #include <stdint.h> /* for uint32_t */
                         * try_fclose_unlink_rename(), try_fgetc_noeof(),
                         */
 #include "map_objects.h" /* for structs MapObj, init_map_object_defs(),
-                          * build_map_objects(), get_player()
+                          * add_map_objects(), get_player()
                           */
 #include "map.h" /* for struct Map, init_map() */
-#include "misc.h" /* for update_log(), find_passable_pos(), save_game(),
-                   * try_calloc(), check_tempfile(), check_xor_files(),
-                   * load_interface_conf(), load_game(), rrand()
+#include "misc.h" /* for update_log(), save_game(), try_calloc(), load_game(),
+                   * check_tempfile(), check_files_xor(), load_interface_conf(),
+                   * rrand()
                    */
 #include "wincontrol.h" /* get_win_by_id(), get_winconf_by_win() */
 #include "rexit.h" /* for exit_game() */