summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-09-21 11:47:56 +0000
committerSimon Howard2006-09-21 11:47:56 +0000
commita5b5611108dabd1ae1957d0a57ebaeccc356b358 (patch)
tree4bb5db93c32a7893c308b64ca1b2f1ad418c60e0
parent6339c4cbeb608b008eafe0b1e358285ae08ef902 (diff)
downloadchocolate-doom-a5b5611108dabd1ae1957d0a57ebaeccc356b358.tar.gz
chocolate-doom-a5b5611108dabd1ae1957d0a57ebaeccc356b358.tar.bz2
chocolate-doom-a5b5611108dabd1ae1957d0a57ebaeccc356b358.zip
"\0" != NULL
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 642
-rw-r--r--src/d_main.c6
-rw-r--r--src/p_spec.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/d_main.c b/src/d_main.c
index ba262dde..f8ef8992 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: d_main.c 641 2006-09-21 11:13:28Z rtc_marine $
+// $Id: d_main.c 642 2006-09-21 11:47:56Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -184,7 +184,7 @@
//-----------------------------------------------------------------------------
-static const char rcsid[] = "$Id: d_main.c 641 2006-09-21 11:13:28Z rtc_marine $";
+static const char rcsid[] = "$Id: d_main.c 642 2006-09-21 11:47:56Z fraggle $";
#define BGCOLOR 7
#define FGCOLOR 8
@@ -1406,7 +1406,7 @@ static struct
{"Doom 1.9", "1.9", exe_doom_1_9},
{"Ultimate Doom", "ultimate", exe_ultimate},
{"Final Doom", "final", exe_final},
- { "\0", "\0", 0},
+ { NULL, NULL, 0},
};
// Initialise the game version
diff --git a/src/p_spec.c b/src/p_spec.c
index 1371f2dc..52e7e1d8 100644
--- a/src/p_spec.c
+++ b/src/p_spec.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: p_spec.c 641 2006-09-21 11:13:28Z rtc_marine $
+// $Id: p_spec.c 642 2006-09-21 11:47:56Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -45,7 +45,7 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: p_spec.c 641 2006-09-21 11:13:28Z rtc_marine $";
+rcsid[] = "$Id: p_spec.c 642 2006-09-21 11:47:56Z fraggle $";
#include <stdlib.h>
@@ -148,7 +148,7 @@ animdef_t animdefs[] =
{true, "WFALL4", "WFALL1", 8},
{true, "DBRAIN4", "DBRAIN1", 8},
- { -1, "\0", "\0", 0}
+ { -1, NULL, NULL, 0},
};
anim_t anims[MAXANIMS];