1
0
mirror of https://github.com/godotengine/godot synced 2024-07-03 08:35:04 +00:00

Merge pull request #93428 from adamscott/fix-superfluous-line-samples

Remove superfluous non-working sample playing check
This commit is contained in:
Rémi Verschelde 2024-06-21 16:49:52 +02:00
commit 8a6c1e8f52
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -276,9 +276,6 @@ bool AudioStreamPlayerInternal::is_playing() const {
if (AudioServer::get_singleton()->is_playback_active(playback)) {
return true;
}
if (AudioServer::get_singleton()->is_sample_playback_active(playback)) {
return true;
}
}
return false;
}