mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed parsing of MAPxx par times in BEX lumps
https://forum.zdoom.org/viewtopic.php?t=72458
This commit is contained in:
parent
30e24938ca
commit
7d1ce1c8cd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue