summaryrefslogtreecommitdiffstats
path: root/scene/audio
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-13 16:56:03 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-13 23:41:07 +0200
commit413c11357d039a03a8dca440a01951a637ae936b (patch)
treee96f5b865d7158aa69fcf1e422ffafdb59dc2411 /scene/audio
parentde196227e17126fa18716c4ed8e61108584116dc (diff)
downloadredot-engine-413c11357d039a03a8dca440a01951a637ae936b.tar.gz
Use Core/Scene stringnames consistently
Diffstat (limited to 'scene/audio')
-rw-r--r--scene/audio/audio_stream_player_internal.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/audio/audio_stream_player_internal.cpp b/scene/audio/audio_stream_player_internal.cpp
index ed3c43818e..a7b8faaaae 100644
--- a/scene/audio/audio_stream_player_internal.cpp
+++ b/scene/audio/audio_stream_player_internal.cpp
@@ -31,7 +31,6 @@
#include "audio_stream_player_internal.h"
#include "scene/main/node.h"
-#include "scene/scene_string_names.h"
#include "servers/audio/audio_stream.h"
void AudioStreamPlayerInternal::_set_process(bool p_enabled) {
@@ -78,7 +77,7 @@ void AudioStreamPlayerInternal::process() {
_set_process(false);
}
if (!playbacks_to_remove.is_empty()) {
- node->emit_signal(SNAME("finished"));
+ node->emit_signal(SceneStringName(finished));
}
}