mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Fixed restoration of absolute time position for sounds
Loading of saved game no longer restarts sounds from beginning
This commit is contained in:
parent
2edae42822
commit
e848abf4df
1 changed files with 2 additions and 2 deletions
|
@ -1585,7 +1585,7 @@ FISoundChannel *OpenALSoundRenderer::StartSound(SoundHandle sfx, float vol, int
|
|||
else
|
||||
{
|
||||
if((chanflags&SNDF_ABSTIME))
|
||||
alSourcef(source, AL_SEC_OFFSET, reuse_chan->StartTime.Lo/1000.f);
|
||||
alSourcef(source, AL_SAMPLE_OFFSET, reuse_chan->StartTime.Lo);
|
||||
else
|
||||
{
|
||||
float offset = std::chrono::duration_cast<std::chrono::duration<float>>(
|
||||
|
@ -1793,7 +1793,7 @@ FISoundChannel *OpenALSoundRenderer::StartSound3D(SoundHandle sfx, SoundListener
|
|||
else
|
||||
{
|
||||
if((chanflags&SNDF_ABSTIME))
|
||||
alSourcef(source, AL_SEC_OFFSET, reuse_chan->StartTime.Lo/1000.f);
|
||||
alSourcef(source, AL_SAMPLE_OFFSET, reuse_chan->StartTime.Lo);
|
||||
else
|
||||
{
|
||||
float offset = std::chrono::duration_cast<std::chrono::duration<float>>(
|
||||
|
|
Loading…
Reference in a new issue