From e6c36442bdeae13ec7f330155f05bfc73e3148e1 Mon Sep 17 00:00:00 2001 From: terminx Date: Wed, 10 Oct 2018 19:14:36 +0000 Subject: [PATCH] Add missing ifdef guards to namesdyn.h git-svn-id: https://svn.eduke32.com/eduke32@7054 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/namesdyn.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/duke3d/src/namesdyn.h b/source/duke3d/src/namesdyn.h index ec73460a9..109c1153c 100644 --- a/source/duke3d/src/namesdyn.h +++ b/source/duke3d/src/namesdyn.h @@ -20,6 +20,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ //------------------------------------------------------------------------- +#ifndef namesdyn_h__ +#define namesdyn_h__ + + #define DYNTILEREMAP_ENABLE @@ -1241,3 +1245,4 @@ extern int32_t JURYGUY; #define DYNAMICTILEMAP(Tilenum) (Tilenum) #endif +#endif // namesdyn_h__