From 936f9ffbb28bd6b5812c2f441aa176a494ed5e3f Mon Sep 17 00:00:00 2001 From: Chris Fielder Date: Sat, 28 Dec 2013 16:58:46 -0600 Subject: heretic: fix automap panning left When follow mode is off, hitting left would cause it to scroll all the way to the west of the map without stopping.--- src/heretic/am_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/heretic') diff --git a/src/heretic/am_map.c b/src/heretic/am_map.c index 2230c69e..b753d96b 100644 --- a/src/heretic/am_map.c +++ b/src/heretic/am_map.c @@ -634,7 +634,7 @@ boolean AM_Responder(event_t * ev) if (!followplayer) m_paninc.x = 0; } - else if (key == key_map_east) + else if (key == key_map_west) { if (!followplayer) m_paninc.x = 0; -- cgit v1.2.3