Blob Blame History Raw
--- vegastrike-0.4.3/objconv/mesher/endianness.h~	2007-05-10 22:55:21.000000000 +0200
+++ vegastrike-0.4.3/objconv/mesher/endianness.h	2007-05-10 22:55:21.000000000 +0200
@@ -42,7 +42,7 @@
                             (((uint32_t)(x) >> 8) & 0x0000FF00) | \
                             ((uint32_t)(x) >> 24))
     #  define le16_to_cpu(x) (((x&0xFF)<<8) | ((unsigned short)(x)>>8))
-    # define le64_to_cpu(x) (DONTUSE__NXSwapBigDoubleToLittle(x))
+    # define le64_to_cpu(x) (DONTUSE__NXSwapBigDoubleToLittleEndian(x))
     # else
     #  define le32_to_cpu(x) (x)
     #  define le16_to_cpu(x) (x)
@@ -53,7 +53,7 @@
     # include <byteswap.h>
     # define le32_to_cpu(x) (bswap_32(x))
     # define le16_to_cpu(x) (bswap_16(x))
-    # define le64_to_cpu(x) (DONTUSE__NXSwapBigDoubleToLittle(x))
+    # define le64_to_cpu(x) (DONTUSE__NXSwapBigDoubleToLittleEndian(x))
     #else
     # define le32_to_cpu(x) (x)
     # define le16_to_cpu(x) (x)