Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- fix the ugly constants in udmf.cpp - namespace them to the file, an…
…d add comments depicting what they are
  • Loading branch information
madame-rachelle committed Sep 29, 2021
1 parent 8f54de9 commit e9ce77c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/maploader/udmf.cpp
Expand Up @@ -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
Expand Down

0 comments on commit e9ce77c

Please sign in to comment.