home · contact · privacy
Had forgotten to actually add the new library.
[plomrogue] / src / map.c
index f72482e2d276d718307ed28fe0b66d97452cf752..394f818c48a3876a9ddb445ad4fc3f44b57fe3e2 100644 (file)
--- a/src/map.c
+++ b/src/map.c
@@ -2,7 +2,7 @@
 #include <stdlib.h>
 #include <stdint.h>
 #include "misc.h"
-#include "objects_on_map.h"
+#include "map_objects.h"
 
 struct Map init_map () {
 // Initialize map with some experimental start values.
@@ -48,4 +48,3 @@ void map_center_player (struct Map * map, struct Player * player, struct yx_uint
 // Center map on player.
   map->offset.y = center_offset (player->pos.y, map->size.y, frame_size.y);
   map->offset.x = center_offset (player->pos.x, map->size.x, frame_size.x); }
-