diff options
| author | Juan Linietsky | 2016-02-11 00:00:11 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-02-11 00:01:35 -0300 |
| commit | db43e941752590f32e949638e35f5891bc8979c3 (patch) | |
| tree | d66e8a430d7eec6cee38d5e5142fbbccc7b9ad25 /scene/audio | |
| parent | 4321b543b5b971e6fc980f51f24c6877fd6ae07e (diff) | |
| download | godot-db43e941752590f32e949638e35f5891bc8979c3.tar.gz godot-db43e941752590f32e949638e35f5891bc8979c3.tar.zst godot-db43e941752590f32e949638e35f5891bc8979c3.zip | |
-Made some icon data types smaller so they take up less space
-Fixed sample import plugin, makes samples sound strange in smp when limited hz
Diffstat (limited to 'scene/audio')
| -rw-r--r-- | scene/audio/stream_player.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/audio/stream_player.cpp b/scene/audio/stream_player.cpp index fd1880339..c1799ec12 100644 --- a/scene/audio/stream_player.cpp +++ b/scene/audio/stream_player.cpp @@ -106,8 +106,10 @@ void StreamPlayer::_notification(int p_what) { resume_pos=-1; } else if (autoplay) { play(); + autoplay = false; //this line fix autoplay issues } } + } break; case NOTIFICATION_EXIT_TREE: { |
