mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-07 07:21: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;
|
flags |= F_NEGATIVE;
|
||||||
}
|
}
|
||||||
if (expt == INT_MAX) // inf or nan
|
if (expt == 9999) // inf or nan
|
||||||
{
|
{
|
||||||
if (*obuff == 'N')
|
if (*obuff == 'N')
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue