summaryrefslogtreecommitdiff
path: root/src/deh_ammo.c
diff options
context:
space:
mode:
authorSimon Howard2005-10-03 11:08:16 +0000
committerSimon Howard2005-10-03 11:08:16 +0000
commit27901a5b8a8536ff0c236c96f24970a09821fc31 (patch)
tree420e404e66fba58cab83dc9e1a8d38e58bcc0346 /src/deh_ammo.c
parentcbe3f178b8c314a6b66c04f26906b06153e59c3a (diff)
downloadchocolate-doom-27901a5b8a8536ff0c236c96f24970a09821fc31.tar.gz
chocolate-doom-27901a5b8a8536ff0c236c96f24970a09821fc31.tar.bz2
chocolate-doom-27901a5b8a8536ff0c236c96f24970a09821fc31.zip
Replace end of section functions with NULLs as they arent currently being
used for anything. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 157
Diffstat (limited to 'src/deh_ammo.c')
-rw-r--r--src/deh_ammo.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/deh_ammo.c b/src/deh_ammo.c
index fe626a4a..5ebcb76a 100644
--- a/src/deh_ammo.c
+++ b/src/deh_ammo.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: deh_ammo.c 153 2005-10-02 23:49:01Z fraggle $
+// $Id: deh_ammo.c 157 2005-10-03 11:08:16Z fraggle $
//
// Copyright(C) 2005 Simon Howard
//
@@ -21,6 +21,10 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.2 2005/10/03 11:08:16 fraggle
+// Replace end of section functions with NULLs as they arent currently being
+// used for anything.
+//
// Revision 1.1 2005/10/02 23:49:01 fraggle
// The beginnings of dehacked support
//
@@ -40,10 +44,6 @@ static void *DEH_AmmoStart(deh_context_t *context, char *line)
return NULL;
}
-static void DEH_AmmoEnd(deh_context_t *context, void *tag)
-{
-}
-
static void DEH_AmmoParseLine(deh_context_t *context, char *line, void *tag)
{
}
@@ -54,6 +54,6 @@ deh_section_t deh_section_ammo =
NULL,
DEH_AmmoStart,
DEH_AmmoParseLine,
- DEH_AmmoEnd,
+ NULL,
};