diff options
| author | NNesh <mullruslan@yandex.ru> | 2017-04-25 01:57:05 +0500 |
|---|---|---|
| committer | NNesh <mullruslan@yandex.ru> | 2017-04-25 01:57:05 +0500 |
| commit | 0edc3d72087abf4c0c6bbd14c998180de62cd00a (patch) | |
| tree | 6fdc66fadb504fbe338a83ad6ecad0a5603c55ee /modules/stb_vorbis | |
| parent | 8ee991a2a7e9bbcf3c9d1da24cb1ae8754cf4e8f (diff) | |
| download | redot-engine-0edc3d72087abf4c0c6bbd14c998180de62cd00a.tar.gz | |
Fix AudioPlayer.play() bug when music always starts from 0 pos
Diffstat (limited to 'modules/stb_vorbis')
| -rw-r--r-- | modules/stb_vorbis/audio_stream_ogg_vorbis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp b/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp index 227e5e61b6..8eb05b4324 100644 --- a/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp +++ b/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp @@ -66,8 +66,8 @@ float AudioStreamPlaybackOGGVorbis::get_stream_sampling_rate() { void AudioStreamPlaybackOGGVorbis::start(float p_from_pos) { - seek_pos(p_from_pos); active = true; + seek_pos(p_from_pos); loops = 0; _begin_resample(); } |
