Skip to content

Commit

Permalink
Fix the default loop end point
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat authored and coelckers committed Apr 23, 2017
1 parent 4b78344 commit c2391d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sound/oalsound.cpp
Expand Up @@ -1205,7 +1205,7 @@ std::pair<SoundHandle,bool> OpenALSoundRenderer::LoadSound(uint8_t *sfxdata, int
ChannelConfig chans;
SampleType type;
int srate;
uint32_t loop_start = 0, loop_end = 0;
uint32_t loop_start = 0, loop_end = ~0u;
bool startass = false, endass = false;

if (!memcmp(sfxdata, "OggS", 4) || !memcmp(sfxdata, "FLAC", 4))
Expand Down

0 comments on commit c2391d6

Please sign in to comment.