shithub: choc

Download patch

ref: 7e57759e2e8626538c7712ae59339db03e174539
parent: 9c4ef6cc895afc4e1ff0f3e5527c0814b12d85f2
author: Simon Howard <fraggle@gmail.com>
date: Mon Oct 17 17:14:31 EDT 2005

Ignore comments in dehacked files.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 210

--- 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.
@@ -245,6 +248,16 @@
 
         if (line == NULL)
             return;
+
+        while (line[0] != '\0' && isspace(line[0]))
+            ++line;
+
+        if (line[0] == '#')
+        {
+            // comment
+
+            continue;
+        }
 
         if (IsWhitespace(line))
         {