Doom-Utils / deutex

WAD composer for Doom, Heretic, Hexen, and Strife
Other
61 stars 17 forks source link

simplified boolean expressions #60

Closed andwj closed 6 years ago

andwj commented 6 years ago

I found the "== true" and "== false" everywhere made the code harder to read, so these two commits converts such expressions into more idiomatic C code.

chungy commented 6 years ago

Cool. thanks :)

These are probably holdovers from when the code had to work on pre-DJGPP C compilers for DOS, ones that weren't exactly standards-compliant. We don't really care about such edge cases anymore.