From 610d7fa2782fe894981427a1e917e7b7905fff17 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 11 Jul 2013 00:57:45 +0200 Subject: [PATCH] Renamed include guard constants to better reflect the respective library names. --- src/main.h | 4 ++-- src/map_objects.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 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 #include "yx_uint16.h" -- 2.30.2