home · contact · privacy
Renamed include guard constants to better reflect the respective library names.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 10 Jul 2013 22:57:45 +0000 (00:57 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 10 Jul 2013 22:57:45 +0000 (00:57 +0200)
src/main.h
src/map_objects.h

index 0427e9a24205939eaea59bcfa8f4144c03a4296b..9c04273959e8c5e197058494b3bd6c438d6e29f0 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef ROGUELIKE_H
-#define ROGUELIKE_H
+#ifndef MAIN_H
+#define MAIN_H
 
 #include <stdint.h>
 
index 6f3772e5272fd858760d6d4218032a6784c163ce..8b58c101b05e130f8425a8e7c2b55511deca36e5 100644 (file)
@@ -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"