From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 10 Jul 2013 22:57:45 +0000 (+0200)
Subject: Renamed include guard constants to better reflect the respective library names.
X-Git-Tag: tce~1154
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/booking/%7B%7Bprefix%7D%7D/day_todos?a=commitdiff_plain;h=610d7fa2782fe894981427a1e917e7b7905fff17;p=plomrogue

Renamed include guard constants to better reflect the respective library names.
---

diff --git a/src/main.h b/src/main.h
index 0427e9a..9c04273 100644
--- a/src/main.h
+++ b/src/main.h
@@ -1,5 +1,5 @@
-#ifndef ROGUELIKE_H
-#define ROGUELIKE_H
+#ifndef MAIN_H
+#define MAIN_H
 
 #include <stdint.h>
 
diff --git a/src/map_objects.h b/src/map_objects.h
index 6f3772e..8b58c10 100644
--- a/src/map_objects.h
+++ b/src/map_objects.h
@@ -1,5 +1,5 @@
-#ifndef ACTORS_H
-#define ACTORS_H
+#ifndef MAP_OBJECTS_H
+#define MAP_OBJECTS_H
 
 #include <stdio.h>
 #include "yx_uint16.h"