- fixed parsing of MAPxx par times in BEX lumps

https://forum.zdoom.org/viewtopic.php?t=72458
This commit is contained in:
alexey.lysiuk 2021-06-03 16:46:55 +03:00 committed by Emile Belanger
parent 700c2372ed
commit 666a366ef6

View file

@ -2033,7 +2033,7 @@ static int PatchPars (int dummy)
{
while ('\0' != *str)
{
if (isspace((unsigned char)*str))
if (*str != '\r' && isspace((unsigned char)*str))
{
return str;
}