aboutsummaryrefslogtreecommitdiff
path: root/src/environment.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-04-23 18:31:31 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-04-23 18:31:31 +0300
commit1995b59320fe0fdced55c4605635f38cc42768f1 (patch)
treef3d919f91bfc599110d901fe769e5b761403ecc7 /src/environment.cpp
parent9f17664336e15b987045e0db453c012691ab852c (diff)
downloadhax-minetest-server-1995b59320fe0fdced55c4605635f38cc42768f1.tar.gz
hax-minetest-server-1995b59320fe0fdced55c4605635f38cc42768f1.zip
Code refactoring; split half of main.cpp to game.cpp.
Diffstat (limited to 'src/environment.cpp')
-rw-r--r--src/environment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/environment.cpp b/src/environment.cpp
index b3055ca6f..2b781126b 100644
--- a/src/environment.cpp
+++ b/src/environment.cpp
@@ -438,7 +438,7 @@ void ServerEnvironment::step(float dtime)
bool footprints = g_settings.getBool("footprints");
{
- //TimeTaker timer("Server m_map->timerUpdate()", g_device);
+ //TimeTaker timer("Server m_map->timerUpdate()");
m_map->timerUpdate(dtime);
}
@@ -1027,7 +1027,7 @@ void ClientEnvironment::step(float dtime)
bool footprints = g_settings.getBool("footprints");
{
- //TimeTaker timer("Client m_map->timerUpdate()", g_device);
+ //TimeTaker timer("Client m_map->timerUpdate()");
m_map->timerUpdate(dtime);
}