src/sds.c : Set sustain_loop_end to 0 as suggested by Brian Lewis.

This commit is contained in:
Erik de Castro Lopo 2010-09-30 18:04:58 +10:00
parent d3d2b397f0
commit ed5fee79a3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-09-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sds.c
Set sustain_loop_end to 0 as suggested by Brian Lewis.
2010-09-29 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sds.c

View File

@ -392,7 +392,7 @@ sds_write_header (SF_PRIVATE *psf, int calc_length)
data_length = SDS_INT_TO_3BYTE_ENCODE (psds->total_written) ;
sustain_loop_start = SDS_INT_TO_3BYTE_ENCODE (0) ;
sustain_loop_end = SDS_INT_TO_3BYTE_ENCODE (psds->total_written) ;
sustain_loop_end = SDS_INT_TO_3BYTE_ENCODE (0) ;
psf_binheader_writef (psf, "e33311", data_length, sustain_loop_start, sustain_loop_end, loop_type, 0xF7) ;