Skip to content

Commit

Permalink
Merge pull request #87830 from KoBeWi/internalization_aka_i15n
Browse files Browse the repository at this point in the history
Fix wrong process method in AudioStreamPlayer
  • Loading branch information
akien-mga committed Feb 19, 2024
2 parents 8a3a559 + 56bf379 commit 56134e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/audio/audio_stream_player_internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void AudioStreamPlayerInternal::_set_process(bool p_enabled) {
if (physical) {
node->set_physics_process_internal(p_enabled);
} else {
node->set_process(p_enabled);
node->set_process_internal(p_enabled);
}
}

Expand Down

0 comments on commit 56134e9

Please sign in to comment.