mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-15 08:01:10 +00:00
Merge pull request #187 from divVerent/patch-1
Fix printing of floating poing values in -dumpfin.
This commit is contained in:
commit
451873ae52
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