From 486da6922dac5380b4e83cc4c680ad90afb91ca9 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 28 Jun 2022 22:33:53 +0200 Subject: [PATCH] - fixed automap angle in unrotated mode. --- source/core/automap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/automap.cpp b/source/core/automap.cpp index 68a48764f..658872bb9 100644 --- a/source/core/automap.cpp +++ b/source/core/automap.cpp @@ -664,7 +664,7 @@ void DrawOverheadMap(int pl_x, int pl_y, int pl_angle, double const smoothratio) } int x = follow_x; int y = follow_y; - follow_a = am_rotate ? pl_angle : 0; + follow_a = am_rotate ? pl_angle : 1536; AutomapControl(); if (automapMode == am_full)