mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 11:01:36 +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
700c2372ed
commit
666a366ef6
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