Selaa lähdekoodia

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

Remove superfluous non-working sample playing check
Rémi Verschelde 1 vuosi sitten
vanhempi
commit
8a6c1e8f52
1 muutettua tiedostoa jossa 0 lisäystä ja 3 poistoa
  1. 0 3
      scene/audio/audio_stream_player_internal.cpp

+ 0 - 3
scene/audio/audio_stream_player_internal.cpp

@@ -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;
 }