diff options
Diffstat (limited to 'Project/Workspace.cpp')
-rw-r--r-- | Project/Workspace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Workspace.cpp b/Project/Workspace.cpp index 17c8134..585ec82 100644 --- a/Project/Workspace.cpp +++ b/Project/Workspace.cpp @@ -1025,7 +1025,7 @@ void Workspace::UpdateHeatMap() m_hmPlane->UpdateCoords(); - int iterations = std::lround(3.3 * std::powf(m_camera->GetScale(), 0.62)); + int iterations = std::lround(3.3 * std::pow(m_camera->GetScale(), 0.62)); if (iterations < 1) iterations = 1; m_hmPlane->SmoothPlane(iterations); } |