diff options
author | BlockMen <nmuelll@web.de> | 2014-04-12 13:50:22 +0200 |
---|---|---|
committer | BlockMen <nmuelll@web.de> | 2014-04-12 20:04:12 +0200 |
commit | 8b02a015eb7630c25e255ffe400bb714d023609b (patch) | |
tree | 42a7d9bd217a04574767f9c202536bdebafa53c3 /src/client.cpp | |
parent | c0ab09af747fc431dfb459ede30788cb9cd1c56b (diff) | |
download | minetest-8b02a015eb7630c25e255ffe400bb714d023609b.tar.gz minetest-8b02a015eb7630c25e255ffe400bb714d023609b.tar.bz2 minetest-8b02a015eb7630c25e255ffe400bb714d023609b.zip |
Use integers instead of float values
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.cpp b/src/client.cpp index dbe959067..729640268 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1922,10 +1922,10 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id) LocalPlayer *player = m_env.getLocalPlayer(); assert(player != NULL); - player->local_animations[0] = readV2F1000(is); - player->local_animations[1] = readV2F1000(is); - player->local_animations[2] = readV2F1000(is); - player->local_animations[3] = readV2F1000(is); + player->local_animations[0] = readV2S32(is); + player->local_animations[1] = readV2S32(is); + player->local_animations[2] = readV2S32(is); + player->local_animations[3] = readV2S32(is); player->local_animation_speed = readF1000(is); } else if(command == TOCLIENT_EYE_OFFSET) |