Skip to content

Commit

Permalink
Fixed bug 3903 - music_wav.c SamplerChunk struct
Browse files Browse the repository at this point in the history
Ozkan Sezer

It seems Watcom supports arr[] or arr[1] but not arr[0].
I suggest changing it to [1].
  • Loading branch information
slouken committed Oct 21, 2017
1 parent e13ba05 commit c52e706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_wav.c
Expand Up @@ -105,7 +105,7 @@ typedef struct {
Uint32 SMTPE_offset;
Uint32 sample_loops;
Uint32 sampler_data;
SampleLoop loops[0];
SampleLoop loops[1];
} SamplerChunk;

/*********************************************/
Expand Down

0 comments on commit c52e706

Please sign in to comment.