From d14d539144d59fc15f61d11316023b5a7d3af904 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 13 May 2021 22:49:19 +0200 Subject: [PATCH] - fixed issues with MAPINFO parser. These cause problems with map progression, particularly with Exhumed. --- source/core/g_mapinfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/core/g_mapinfo.cpp b/source/core/g_mapinfo.cpp index 60afb7d1b..17779349c 100644 --- a/source/core/g_mapinfo.cpp +++ b/source/core/g_mapinfo.cpp @@ -586,14 +586,14 @@ DEFINE_MAP_OPTION(ex_ramses_pup, false) { parse.ParseAssign(); parse.sc.MustGetString(); - info->ex_ramses_pup = parse.sc.Number; + info->ex_ramses_pup = parse.sc.String; } DEFINE_MAP_OPTION(ex_ramses_text, false) { parse.ParseAssign(); parse.sc.MustGetString(); - info->ex_ramses_text = parse.sc.Number; + info->ex_ramses_text = parse.sc.String; } int ex_ramses_horiz = 11; @@ -925,7 +925,7 @@ MapRecord *FMapInfoParser::ParseMapHeader(MapRecord &defaultinfo) if (map != &sink && map->name.IsEmpty()) sc.ScriptError("Missing level name"); sc.UnGet(); } - if (!map->levelNumber) map->levelNumber = GetDefaultLevelNum(map->labelName); + if (map->levelNumber <= 0) map->levelNumber = GetDefaultLevelNum(map->labelName); return map; }