# HG changeset patch # User Ryan C. Gordon # Date 1000915658 0 # Node ID 4a60ee42ca9a56c37de31c0e25b8401e7b6993e0 # Parent 530fa59d5db94ea3d7c4f40f66b3e8c3e64c81ad Fixed a byte-ordering issue. diff -r 530fa59d5db9 -r 4a60ee42ca9a decoders/voc.c --- a/decoders/voc.c Wed Sep 19 15:38:23 2001 +0000 +++ b/decoders/voc.c Wed Sep 19 16:07:38 2001 +0000 @@ -79,7 +79,7 @@ Uint32 blockseek; /* start of current output block */ Uint32 samples; /* number of samples output */ Uint32 size; /* word length of data */ - int channels; /* number of sound channels */ + Uint8 channels; /* number of sound channels */ int extended; /* Has an extended block been read? */ Uint32 bufpos; /* byte position in internal->buffer. */ } vs_t;