- 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
parent 30e24938ca
commit 7d1ce1c8cd

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;
}