summaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorSmallJoker <mk939@ymail.com>2017-04-17 13:49:48 +0200
committerSmallJoker <mk939@ymail.com>2017-04-17 14:02:26 +0200
commit61202513208b23d3e7a2a91d10aba154e6cbf352 (patch)
tree05d510be4eb3d86a517db9f816709df742631dfa /src/server.cpp
parent04cc9de8f2fbcb11f133c88f02fc11504b3ea6f3 (diff)
downloadminetest-61202513208b23d3e7a2a91d10aba154e6cbf352.tar.gz
minetest-61202513208b23d3e7a2a91d10aba154e6cbf352.tar.bz2
minetest-61202513208b23d3e7a2a91d10aba154e6cbf352.zip
Fix MSVC build broken by 34d32ce
`round` -> `myround` Remove superflous `floor` calls
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 5328b6897..a9e5c3d08 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -1047,7 +1047,7 @@ void Server::AsyncRunStep(bool initial_step)
std::wstringstream ws;
ws << L"*** Server shutting down in "
- << duration_to_string(round(m_shutdown_timer - dtime)).c_str()
+ << duration_to_string(myround(m_shutdown_timer - dtime)).c_str()
<< ".";
infostream << wide_to_utf8(ws.str()).c_str() << std::endl;
@@ -3502,7 +3502,7 @@ void Server::requestShutdown(const std::string &msg, bool reconnect, float delay
std::wstringstream ws;
ws << L"*** Server shutting down in "
- << duration_to_string(round(m_shutdown_timer)).c_str()
+ << duration_to_string(myround(m_shutdown_timer)).c_str()
<< ".";
infostream << wide_to_utf8(ws.str()).c_str() << std::endl;