coelckers / prboom-plus

This is a cleaned up copy of the PrBoom+ SVN repository as a courtesy for those interested in forking that port
287 stars 115 forks source link

UMAPINFO comments not recognized #401

Open ioan-chera opened 2 years ago

ioan-chera commented 2 years ago

The UMAPINFO documentation (https://github.com/coelckers/prboom-plus/blob/master/prboom2/doc/umapinfo.txt) suggests that semicolons start comment lines, but in practice they don't work in this port. Here's a Doom 1 UMAPINFO lump where you can reproduce the error:

map E1M1
{
    next = "E2M9"
    exitpic = "TITLEPIC"
}

; comment
map E4M1
{
    exitpic = "TITLEPIC"
}
JadingTsunami commented 2 years ago

Comments are C-style ('//' or '/ /').

I strongly recommend we do not change that unless the spec is updated.

Agree the spec file should use a consistent comment format with the actual format, however.