foxygit / doom Log in
commit ba7589ba46ab1f40fe5816d80c3994e0e1957a29
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Sep 22 12:16:00 2006 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Fri Sep 22 12:16:00 2006 +0000

    Fix warning about initialiser.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 650
---
 src/m_cheat.h | 4 ++--
 1 file 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