Skip to content

Commit 2fee2ba

Browse files
committedJul 5, 2014
Remove FPS from being next to the version string
1 parent 95be18a commit 2fee2ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/game.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -3217,9 +3217,8 @@ void the_game(bool &kill, bool random_input, InputHandler *input,
32173217
}
32183218
else if(show_hud || show_chat)
32193219
{
3220-
u16 fps = (1.0/dtime_avg1);
32213220
std::ostringstream os(std::ios_base::binary);
3222-
os<<"Minetest "<<minetest_version_hash <<" FPS = "<<fps;
3221+
os<<"Minetest "<<minetest_version_hash;
32233222
guitext->setText(narrow_to_wide(os.str()).c_str());
32243223
guitext->setVisible(true);
32253224
}

0 commit comments

Comments
 (0)