Browse Source

channels are uint64 not int64 - typo fix

Joe Shochet 21 years ago
parent
commit
f7bd059eaa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/dcparser/dcPacker.h

+ 1 - 1
direct/src/dcparser/dcPacker.h

@@ -153,7 +153,7 @@ PUBLISHED:
 
 // this is a hack to allw me to get in and out of 32bit Mode Faster
 // need to agree with channel_type in dcbase.h
-#define RAW_PACK_CHANNEL(in)  raw_pack_int64(in)
+#define RAW_PACK_CHANNEL(in)  raw_pack_uint64(in)
   
 
   INLINE int raw_unpack_int8();