Skip to content

Commit

Permalink
- fixed parsing of MAPxx par times in BEX lumps
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk authored and coelckers committed Jul 25, 2021
1 parent 8c58a7a commit 5acde75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamedata/d_dehacked.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5acde75

Please sign in to comment.