mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Fix crash when previewing null AudioStream
This commit is contained in:
parent
3573d5f4ae
commit
a327a0078b
@ -169,7 +169,8 @@ Ref<AudioStreamPreview> AudioStreamPreviewGenerator::generate_preview(const Ref<
|
||||
preview->preview->preview = maxmin;
|
||||
preview->preview->length = len_s;
|
||||
|
||||
preview->thread = Thread::create(_preview_thread, preview);
|
||||
if (preview->playback.is_valid())
|
||||
preview->thread = Thread::create(_preview_thread, preview);
|
||||
|
||||
return preview->preview;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user