aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-06 13:43:15 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-06 13:43:15 +0100
commita97068c12dbbe309a98fd00bd24fdfd5a9cb9012 (patch)
tree00ef4d381f02a7dd73d3829777f705d16c69c0ae /game
parentf2a24bc4f5956d7d59ae42fade277a7826e174da (diff)
Added looping bool
Diffstat (limited to 'game')
-rw-r--r--game/StartGameScript.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/StartGameScript.cpp b/game/StartGameScript.cpp
index 273666c..466dbce 100644
--- a/game/StartGameScript.cpp
+++ b/game/StartGameScript.cpp
@@ -52,7 +52,7 @@ void StartGameScript::fixed_update(crepe::duration_t dt) {
AudioSource & background_music
= this->get_components_by_name<AudioSource>("background_music").front();
- background_music.play();
+ background_music.play(true);
this->took_jetpack = true;
}