From dac802d28a8f20573f5ed6945ed6c0e93172fb60 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 15 Jul 2012 03:55:05 +0000 Subject: [PATCH] - Fixed: Toggling the automap could cancel out ending the level, among other things. SVN r3765 (trunk) --- src/am_map.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/am_map.cpp b/src/am_map.cpp index 44b6da619b..bb0215242c 100644 --- a/src/am_map.cpp +++ b/src/am_map.cpp @@ -1158,7 +1158,10 @@ void AM_NewResolution() CCMD (togglemap) { - gameaction = ga_togglemap; + if (gameaction == ga_nothing) + { + gameaction = ga_togglemap; + } } //=============================================================================