mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-04 09:52:01 +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)
|
while ('\0' != *str)
|
||||||
{
|
{
|
||||||
if (isspace((unsigned char)*str))
|
if (*str != '\r' && isspace((unsigned char)*str))
|
||||||
{
|
{
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue