mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-16 00:21:45 +00:00
Fix printing of floating poing values in -dumpfin.
%g is not lossless for single precision floats - %.9g is (other than distinguishing NaNs, who cares).
This commit is contained in:
parent
620bd76e76
commit
9c81ff263a
1 changed files with 3 additions and 2 deletions
5
ir.cpp
5
ir.cpp
|
@ -4054,10 +4054,11 @@ void ir_value::dump(int (*oprintf)(const char*, ...)) const
|
|||
oprintf("fn:%s", m_name.c_str());
|
||||
break;
|
||||
case TYPE_FLOAT:
|
||||
oprintf("%g", m_constval.vfloat);
|
||||
// %.9g is lossless for IEEE single precision.
|
||||
oprintf("%.9g", m_constval.vfloat);
|
||||
break;
|
||||
case TYPE_VECTOR:
|
||||
oprintf("'%g %g %g'",
|
||||
oprintf("'%.9g %.9g %.9g'",
|
||||
m_constval.vvec.x,
|
||||
m_constval.vvec.y,
|
||||
m_constval.vvec.z);
|
||||
|
|
Loading…
Reference in a new issue