summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-09-22 12:16:00 +0000
committerSimon Howard2006-09-22 12:16:00 +0000
commitba7589ba46ab1f40fe5816d80c3994e0e1957a29 (patch)
tree5a8ca991073ebbe9ceaf97ccdad2819be6ff705e
parent27f2691ac932f2848b7b844d5ad453c3923e8116 (diff)
downloadchocolate-doom-ba7589ba46ab1f40fe5816d80c3994e0e1957a29.tar.gz
chocolate-doom-ba7589ba46ab1f40fe5816d80c3994e0e1957a29.tar.bz2
chocolate-doom-ba7589ba46ab1f40fe5816d80c3994e0e1957a29.zip
Fix warning about initialiser.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 650
-rw-r--r--src/m_cheat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m_cheat.h b/src/m_cheat.h
index 26c56b4c..add80337 100644
--- a/src/m_cheat.h
+++ b/src/m_cheat.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: m_cheat.h 641 2006-09-21 11:13:28Z rtc_marine $
+// $Id: m_cheat.h 650 2006-09-22 12:16:00Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -37,7 +37,7 @@
// declaring a cheat
#define CHEAT(value, parameters) \
- { value, sizeof(value) - 1, parameters, 0, 0, 0 }
+ { value, sizeof(value) - 1, parameters, 0, 0, "" }
#define MAX_CHEAT_LEN 15
#define MAX_CHEAT_PARAMS 5