mirror of
https://github.com/DrBeef/Raze.git
synced 2025-03-22 01:01:04 +00:00
- Make stat coord
show full floating point values.
This commit is contained in:
parent
597b291252
commit
7e6bc02d45
1 changed files with 4 additions and 4 deletions
|
@ -239,10 +239,10 @@ ADD_STAT(coord)
|
|||
FString out;
|
||||
if (coord.first.X < DBL_MAX)
|
||||
{
|
||||
out.AppendFormat("X: %d ", int(coord.first.X));
|
||||
out.AppendFormat("Y: %d ", int(coord.first.Y));
|
||||
out.AppendFormat("Z: %d ", int(coord.first.Z));
|
||||
out.AppendFormat("Angle: %d\n", int(coord.second.Degrees()));
|
||||
out.AppendFormat("X: %f ", coord.first.X);
|
||||
out.AppendFormat("Y: %f ", coord.first.Y);
|
||||
out.AppendFormat("Z: %f ", coord.first.Z);
|
||||
out.AppendFormat("Angle: %f\n", coord.second.Degrees());
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue