changeset 32:4a60ee42ca9a

Fixed a byte-ordering issue.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 19 Sep 2001 16:07:38 +0000
parents 530fa59d5db9
children 662bacccfd2c
files decoders/voc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;