diff options
author | admin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-11-03 18:42:24 +0100 |
---|---|---|
committer | admin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-11-03 18:42:24 +0100 |
commit | ef99915447cde365adcc026e2029335177a68ced (patch) | |
tree | bb310b662ffdb6a88058ef34f46e7c08276ff7f7 /source/Endianness.h | |
parent | Added some redstone items. (diff) | |
download | cuberite-ef99915447cde365adcc026e2029335177a68ced.tar cuberite-ef99915447cde365adcc026e2029335177a68ced.tar.gz cuberite-ef99915447cde365adcc026e2029335177a68ced.tar.bz2 cuberite-ef99915447cde365adcc026e2029335177a68ced.tar.lz cuberite-ef99915447cde365adcc026e2029335177a68ced.tar.xz cuberite-ef99915447cde365adcc026e2029335177a68ced.tar.zst cuberite-ef99915447cde365adcc026e2029335177a68ced.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Endianness.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source/Endianness.h b/source/Endianness.h index 9e62c48c4..cf5ed5567 100644 --- a/source/Endianness.h +++ b/source/Endianness.h @@ -45,7 +45,10 @@ inline long long NetworkToHostLong8( void* a_Value ) inline float NetworkToHostFloat4( void* a_Value )
{
- u_long buf = *(u_long*)a_Value;
- buf = ntohl( buf );
+ //u_long buf = *(u_long*)a_Value;
+ unsigned long buf = *(unsigned long*)a_Value;
+ buf = ntohl( (unsigned long)buf );
+ (void)printf("",(unsigned long)buf);
+ //(unsigned long)buf;
return *(float*)reinterpret_cast<float *>(&buf);
-}
\ No newline at end of file +}
|