From 9b6485b5cc5f005a547e8dd3e3d5a8b90838ed99 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 24 Dec 2012 18:33:24 +0000 Subject: Fix compiler warnings by removing variables that are set but not used. Subversion-branch: /branches/v2-branch Subversion-revision: 2555 --- src/strife/am_map.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/strife/am_map.c') diff --git a/src/strife/am_map.c b/src/strife/am_map.c index 2e13d28f..e942e3ac 100644 --- a/src/strife/am_map.c +++ b/src/strife/am_map.c @@ -540,7 +540,8 @@ void AM_Stop (void) // void AM_Start (void) { - static int lastlevel = -1, lastepisode = -1; + static int lastlevel = -1; + //static int lastepisode = -1; if (!stopped) AM_Stop(); stopped = false; @@ -584,7 +585,6 @@ AM_Responder { int rc; - static int cheatstate=0; static int bigstate=0; static char buffer[20]; int key; @@ -681,7 +681,6 @@ AM_Responder } else { - cheatstate=0; rc = false; } -- cgit v1.2.3