mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-16 10:16:33 +00:00
Add missing paren and remove unnecessary flushes
This commit is contained in:
parent
a7ba54c361
commit
33ea16655b
1 changed files with 6 additions and 6 deletions
|
@ -175,12 +175,12 @@ namespace
|
|||
{
|
||||
for (const ESM::Transport::Dest& dest : transport)
|
||||
{
|
||||
std::cout << " Destination Position: " << std::format("{:12.3f}", dest.mPos.pos[0]) << ","
|
||||
<< std::format("{:12.3f}", dest.mPos.pos[1]) << "," << std::format("{:12.3f}", dest.mPos.pos[2])
|
||||
<< ")" << std::endl;
|
||||
std::cout << " Destination Rotation: " << std::format("{:9.6f}", dest.mPos.rot[0]) << ","
|
||||
<< std::format("{:9.6f}", dest.mPos.rot[1]) << "," << std::format("{:9.6f}", dest.mPos.rot[2])
|
||||
<< ")" << std::endl;
|
||||
std::cout << " Destination Position: (" << std::format("{:12.3f}", dest.mPos.pos[0]) << ','
|
||||
<< std::format("{:12.3f}", dest.mPos.pos[1]) << ',' << std::format("{:12.3f}", dest.mPos.pos[2])
|
||||
<< ")\n";
|
||||
std::cout << " Destination Rotation: (" << std::format("{:9.6f}", dest.mPos.rot[0]) << ','
|
||||
<< std::format("{:9.6f}", dest.mPos.rot[1]) << ',' << std::format("{:9.6f}", dest.mPos.rot[2])
|
||||
<< ")\n";
|
||||
if (!dest.mCellName.empty())
|
||||
std::cout << " Destination Cell: " << dest.mCellName << std::endl;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue