diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-04-23 18:31:31 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-04-23 18:31:31 +0300 |
commit | 1995b59320fe0fdced55c4605635f38cc42768f1 (patch) | |
tree | f3d919f91bfc599110d901fe769e5b761403ecc7 /src/environment.cpp | |
parent | 9f17664336e15b987045e0db453c012691ab852c (diff) | |
download | minetest-1995b59320fe0fdced55c4605635f38cc42768f1.tar.gz minetest-1995b59320fe0fdced55c4605635f38cc42768f1.tar.bz2 minetest-1995b59320fe0fdced55c4605635f38cc42768f1.zip |
Code refactoring; split half of main.cpp to game.cpp.
Diffstat (limited to 'src/environment.cpp')
-rw-r--r-- | src/environment.cpp | 4 |
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); } |