summaryrefslogtreecommitdiff
path: root/src/m_controls.c
diff options
context:
space:
mode:
authorJames Haley2010-09-18 17:35:57 +0000
committerJames Haley2010-09-18 17:35:57 +0000
commit5de507694b0ca43739033d75cf20fcf7ea31a2dd (patch)
tree931db2024210a6396df2808c8cd626b7bcb19991 /src/m_controls.c
parentbf215f516ed4742fd19b920d8a5d3f6738375168 (diff)
downloadchocolate-doom-5de507694b0ca43739033d75cf20fcf7ea31a2dd.tar.gz
chocolate-doom-5de507694b0ca43739033d75cf20fcf7ea31a2dd.tar.bz2
chocolate-doom-5de507694b0ca43739033d75cf20fcf7ea31a2dd.zip
Tons of warnings fixed - now only 7 warnings at warning level 3, and
most of those are outside of our own code (get on those signed/unsigned mismatches in the midi code, fraggle ;) Subversion-branch: /branches/strife-branch Subversion-revision: 2110
Diffstat (limited to 'src/m_controls.c')
-rw-r--r--src/m_controls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m_controls.c b/src/m_controls.c
index a9beed46..b3d5dc21 100644
--- a/src/m_controls.c
+++ b/src/m_controls.c
@@ -355,8 +355,8 @@ void M_BindMenuControls(void)
void M_BindChatControls(unsigned int num_players)
{
- char name[32]; // haleyjd: 20 not large enough - Thank you, come again!
- int i;
+ char name[32]; // haleyjd: 20 not large enough - Thank you, come again!
+ unsigned int i; // haleyjd: signedness conflict
M_BindVariable("key_multi_msg", &key_multi_msg);