mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-19 01:16:45 -04:00
Add missing paren and remove unnecessary flushes
This commit is contained in:
parent
a7ba54c361
commit
33ea16655b
@ -175,12 +175,12 @@ namespace
|
|||||||
{
|
{
|
||||||
for (const ESM::Transport::Dest& dest : transport)
|
for (const ESM::Transport::Dest& dest : transport)
|
||||||
{
|
{
|
||||||
std::cout << " Destination Position: " << std::format("{:12.3f}", dest.mPos.pos[0]) << ","
|
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::format("{:12.3f}", dest.mPos.pos[1]) << ',' << std::format("{:12.3f}", dest.mPos.pos[2])
|
||||||
<< ")" << std::endl;
|
<< ")\n";
|
||||||
std::cout << " Destination Rotation: " << std::format("{:9.6f}", dest.mPos.rot[0]) << ","
|
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::format("{:9.6f}", dest.mPos.rot[1]) << ',' << std::format("{:9.6f}", dest.mPos.rot[2])
|
||||||
<< ")" << std::endl;
|
<< ")\n";
|
||||||
if (!dest.mCellName.empty())
|
if (!dest.mCellName.empty())
|
||||||
std::cout << " Destination Cell: " << dest.mCellName << std::endl;
|
std::cout << " Destination Cell: " << dest.mCellName << std::endl;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user