Merge pull request #87830 from KoBeWi/internalization_aka_i15n

Fix wrong process method in AudioStreamPlayer
This commit is contained in:
Rémi Verschelde 2024-02-19 17:06:32 +01:00
commit 56134e99da
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

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