From e9ce77c39efdda2be274086b0d9715b5cef92bb7 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 29 Sep 2021 10:51:59 -0400 Subject: [PATCH] - fix the ugly constants in udmf.cpp - namespace them to the file, and add comments depicting what they are --- src/maploader/udmf.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/maploader/udmf.cpp b/src/maploader/udmf.cpp index 256a119e6..f30ddc736 100644 --- a/src/maploader/udmf.cpp +++ b/src/maploader/udmf.cpp @@ -112,13 +112,13 @@ static inline bool P_IsThingSpecial(int specnum) enum { - Dm=1, - Ht=2, - Hx=4, - St=8, - Zd=16, - Zdt=32, - Va=64, + Dm=1, // Doom + Ht=2, // Heretic + Hx=4, // Hexen + St=8, // Strife + Zd=16, // ZDoom + Zdt=32, // ZDoom Translated + Va=64, // Vavoom // will be extended later. Unknown namespaces will always be treated like the base // namespace for each game