summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2005-07-23 21:42:52 +0000
committerSimon Howard2005-07-23 21:42:52 +0000
commit5795f86ba16e2a425b4ea3a87b96da446fed30b4 (patch)
treeb030d1bbf5f9ff04fa13ac294a52c300992d20d7 /src
parentbc24e169e52c28d7346787fc8cf1c2238dc2f7f3 (diff)
downloadchocolate-doom-5795f86ba16e2a425b4ea3a87b96da446fed30b4.tar.gz
chocolate-doom-5795f86ba16e2a425b4ea3a87b96da446fed30b4.tar.bz2
chocolate-doom-5795f86ba16e2a425b4ea3a87b96da446fed30b4.zip
Add missing null to end of sprite names list
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 24
Diffstat (limited to 'src')
-rw-r--r--src/info.c13
-rw-r--r--src/info.h7
2 files changed, 14 insertions, 6 deletions
diff --git a/src/info.c b/src/info.c
index 86e51bed..81ef2e93 100644
--- a/src/info.c
+++ b/src/info.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: info.c 18 2005-07-23 18:56:07Z fraggle $
+// $Id: info.c 24 2005-07-23 21:42:52Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.4 2005/07/23 21:42:52 fraggle
+// Add missing null to end of sprite names list
+//
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
@@ -40,7 +43,9 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: info.c 18 2005-07-23 18:56:07Z fraggle $";
+rcsid[] = "$Id: info.c 24 2005-07-23 21:42:52Z fraggle $";
+
+#include <stdlib.h>
// Data.
#include "sounds.h"
@@ -50,7 +55,7 @@ rcsid[] = "$Id: info.c 18 2005-07-23 18:56:07Z fraggle $";
#include "p_mobj.h"
-char *sprnames[NUMSPRITES] = {
+char *sprnames[] = {
"TROO","SHTG","PUNG","PISG","PISF","SHTF","SHT2","CHGG","CHGF","MISG",
"MISF","SAWG","PLSG","PLSF","BFGG","BFGF","BLUD","PUFF","BAL1","BAL2",
"PLSS","PLSE","MISL","BFS1","BFE1","BFE2","TFOG","IFOG","PLAY","POSS",
@@ -64,7 +69,7 @@ char *sprnames[NUMSPRITES] = {
"POL3","POL1","POL6","GOR2","GOR3","GOR4","GOR5","SMIT","COL1","COL2",
"COL3","COL4","CAND","CBRA","COL6","TRE1","TRE2","ELEC","CEYE","FSKU",
"COL5","TBLU","TGRN","TRED","SMBT","SMGT","SMRT","HDB1","HDB2","HDB3",
- "HDB4","HDB5","HDB6","POB1","POB2","BRS1","TLMP","TLP2"
+ "HDB4","HDB5","HDB6","POB1","POB2","BRS1","TLMP","TLP2", NULL
};
diff --git a/src/info.h b/src/info.h
index 3109651f..f67bc695 100644
--- a/src/info.h
+++ b/src/info.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: info.h 8 2005-07-23 16:44:57Z fraggle $
+// $Id: info.h 24 2005-07-23 21:42:52Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -1163,7 +1163,7 @@ typedef struct
} state_t;
extern state_t states[NUMSTATES];
-extern char *sprnames[NUMSPRITES];
+extern char *sprnames[];
@@ -1343,6 +1343,9 @@ extern mobjinfo_t mobjinfo[NUMMOBJTYPES];
//-----------------------------------------------------------------------------
//
// $Log$
+// Revision 1.3 2005/07/23 21:42:52 fraggle
+// Add missing null to end of sprite names list
+//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//