summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorkwolekr <mirrorisim@gmail.com>2013-02-26 01:57:59 -0500
committerkwolekr <mirrorisim@gmail.com>2013-02-26 01:57:59 -0500
commitd31f07bd4b83f858cce589faac56922e12ba670f (patch)
treed4044aa4aa782dc1cb9f57adfacb3b2fd8ecc4b2 /src/game.cpp
parent979ca23f1eae1adeb8b0083dffe7203c54d87395 (diff)
downloadminetest-d31f07bd4b83f858cce589faac56922e12ba670f.tar.gz
minetest-d31f07bd4b83f858cce589faac56922e12ba670f.tar.bz2
minetest-d31f07bd4b83f858cce589faac56922e12ba670f.zip
Fix most warnings, re-fix MSVC compile error
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 8ab0f3fe3..1ae29b13b 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -2816,12 +2816,12 @@ void the_game(
char temptext[300];
snprintf(temptext, 300,
"(% .1f, % .1f, % .1f)"
- " (yaw = %.1f) (seed = %lli)",
+ " (yaw = %.1f) (seed = %llu)",
player_position.X/BS,
player_position.Y/BS,
player_position.Z/BS,
wrapDegrees_0_360(camera_yaw),
- client.getMapSeed());
+ (unsigned long long)client.getMapSeed());
guitext2->setText(narrow_to_wide(temptext).c_str());
guitext2->setVisible(true);