summaryrefslogtreecommitdiff
path: root/src/m_cheat.h
diff options
context:
space:
mode:
authorSimon Howard2006-10-11 22:55:06 +0000
committerSimon Howard2006-10-11 22:55:06 +0000
commit396de0009d3a045f10e101efc2d3f1b8eb07ab16 (patch)
tree79319fb3b2ec55f488e584daa97b7326c75155df /src/m_cheat.h
parent5db5fe7d42dbcc3912762c6327e34919dc131ca7 (diff)
downloadchocolate-doom-396de0009d3a045f10e101efc2d3f1b8eb07ab16.tar.gz
chocolate-doom-396de0009d3a045f10e101efc2d3f1b8eb07ab16.tar.bz2
chocolate-doom-396de0009d3a045f10e101efc2d3f1b8eb07ab16.zip
Shut up compiler warnings.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 694
Diffstat (limited to 'src/m_cheat.h')
-rw-r--r--src/m_cheat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/m_cheat.h b/src/m_cheat.h
index add80337..660b3c14 100644
--- a/src/m_cheat.h
+++ b/src/m_cheat.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: m_cheat.h 650 2006-09-22 12:16:00Z fraggle $
+// $Id: m_cheat.h 694 2006-10-11 22:55:06Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -47,12 +47,12 @@ typedef struct
// settings for this cheat
char sequence[MAX_CHEAT_LEN];
- int sequence_len;
+ size_t sequence_len;
int parameter_chars;
// state used during the game
- int chars_read;
+ size_t chars_read;
int param_chars_read;
char parameter_buf[MAX_CHEAT_PARAMS];
} cheatseq_t;