Skip to content

Commit

Permalink
- fix for loop tag parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Feb 15, 2020
1 parent 9256324 commit 9097591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/streamsources/music_libsndfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static void ParseVorbisComments(MusicIO::FileInterface *fr, uint32_t *start, zmu

static const char* loopStartTags[] = { "LOOP_START=", "LOOPSTART=", "LOOP=" };
static const char* loopEndTags[] = { "LOOP_END=", "LOOPEND=" };
static const char* loopLengthTags[] = { "LOOP_LENGTH", "LOOPLENGTH" };
static const char* loopLengthTags[] = { "LOOP_LENGTH=", "LOOPLENGTH=" };

for (auto tag : loopStartTags)
{
Expand Down

0 comments on commit 9097591

Please sign in to comment.