diff options
author | Simon Howard | 2005-10-17 21:14:31 +0000 |
---|---|---|
committer | Simon Howard | 2005-10-17 21:14:31 +0000 |
commit | 7e57759e2e8626538c7712ae59339db03e174539 (patch) | |
tree | dc96e8214a9e3fc59dd377728c39c921b2d8e47b /src | |
parent | 9c4ef6cc895afc4e1ff0f3e5527c0814b12d85f2 (diff) | |
download | chocolate-doom-7e57759e2e8626538c7712ae59339db03e174539.tar.gz chocolate-doom-7e57759e2e8626538c7712ae59339db03e174539.tar.bz2 chocolate-doom-7e57759e2e8626538c7712ae59339db03e174539.zip |
Ignore comments in dehacked files.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 210
Diffstat (limited to 'src')
-rw-r--r-- | src/deh_main.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/deh_main.c b/src/deh_main.c index 0f252b77..0782d9fc 100644 --- a/src/deh_main.c +++ b/src/deh_main.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: deh_main.c 182 2005-10-09 20:06:50Z fraggle $ +// $Id: deh_main.c 210 2005-10-17 21:14:31Z fraggle $ // // Copyright(C) 2005 Simon Howard // @@ -21,6 +21,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.7 2005/10/17 21:14:31 fraggle +// Ignore comments in dehacked files. +// // Revision 1.6 2005/10/09 20:06:50 fraggle // Check the header of dehacked files and make sure we only load valid // dehacked files. @@ -246,6 +249,16 @@ static void DEH_ParseContext(deh_context_t *context) if (line == NULL) return; + while (line[0] != '\0' && isspace(line[0])) + ++line; + + if (line[0] == '#') + { + // comment + + continue; + } + if (IsWhitespace(line)) { if (current_section != NULL) |