From 8661a8acfacc7cdd2935732fe5ead7d279a200b0 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 11 Jul 2013 00:56:32 +0200 Subject: [PATCH] Renamed "objects_on_map" library to "map_objects". --- src/draw_wins.c | 2 +- src/main.c | 2 +- src/map.c | 2 +- src/{objects_on_map.c => map_objects.c} | 2 +- src/{objects_on_map.h => map_objects.h} | 0 src/misc.c | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename src/{objects_on_map.c => map_objects.c} (99%) rename src/{objects_on_map.h => map_objects.h} (100%) diff --git a/src/draw_wins.c b/src/draw_wins.c index dd96c36..c32d8b4 100644 --- a/src/draw_wins.c +++ b/src/draw_wins.c @@ -6,7 +6,7 @@ #include "windows.h" #include "misc.h" #include "keybindings.h" -#include "objects_on_map.h" +#include "map_objects.h" #include "map.h" #include "main.h" diff --git a/src/main.c b/src/main.c index 4dd1673..c22e0c2 100644 --- a/src/main.c +++ b/src/main.c @@ -7,7 +7,7 @@ #include "draw_wins.h" #include "keybindings.h" #include "readwrite.h" -#include "objects_on_map.h" +#include "map_objects.h" #include "map.h" #include "misc.h" diff --git a/src/map.c b/src/map.c index f72482e..2db0b9b 100644 --- a/src/map.c +++ b/src/map.c @@ -2,7 +2,7 @@ #include #include #include "misc.h" -#include "objects_on_map.h" +#include "map_objects.h" struct Map init_map () { // Initialize map with some experimental start values. diff --git a/src/objects_on_map.c b/src/map_objects.c similarity index 99% rename from src/objects_on_map.c rename to src/map_objects.c index d74981b..1927e14 100644 --- a/src/objects_on_map.c +++ b/src/map_objects.c @@ -1,4 +1,4 @@ -#include "objects_on_map.h" +#include "map_objects.h" #include #include #include "yx_uint16.h" diff --git a/src/objects_on_map.h b/src/map_objects.h similarity index 100% rename from src/objects_on_map.h rename to src/map_objects.h diff --git a/src/misc.c b/src/misc.c index d4d0ae6..6832b1a 100644 --- a/src/misc.c +++ b/src/misc.c @@ -4,7 +4,7 @@ #include "windows.h" #include "keybindings.h" #include "readwrite.h" -#include "objects_on_map.h" +#include "map_objects.h" #include "map.h" #include "main.h" -- 2.30.2