mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-28 15:02:01 +00:00
Fixed Infinity and NaN floating point values formatting as string
https://forum.zdoom.org/viewtopic.php?t=57706
This commit is contained in:
parent
541fac8c6b
commit
20d7c01fc8
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ fp_begin:
|
|||
{
|
||||
flags |= F_NEGATIVE;
|
||||
}
|
||||
if (expt == INT_MAX) // inf or nan
|
||||
if (expt == 9999) // inf or nan
|
||||
{
|
||||
if (*obuff == 'N')
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue