Remove superfluous non-working sample playing check

This commit is contained in:
Adam Scott 2024-06-21 07:17:28 -04:00
parent 04a530f91f
commit e8212f1849
No known key found for this signature in database
GPG key ID: F6BA2A0302E21A77

View file

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