From fe06c49e3429fa5727d97e031f64e7687f401206 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 26 Jan 2019 17:54:58 +0100 Subject: [PATCH] - fixed: DAutomap::Serialize needs to call its super method. --- src/am_map.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/am_map.cpp b/src/am_map.cpp index 28f9d4d636..3116dc5bec 100644 --- a/src/am_map.cpp +++ b/src/am_map.cpp @@ -3187,6 +3187,7 @@ void DAutomap::Drawer (int bottom) void DAutomap::Serialize(FSerializer &arc) { + Super::Serialize(arc); // This only stores those variables which do not get set each time the automap is either activated or drawn. // Especially the screen coordinates can not be brought over because the display settings may have changed. arc("markpointnum", markpointnum)