diff options
| author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-06 13:43:15 +0100 | 
|---|---|---|
| committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-06 13:43:15 +0100 | 
| commit | a97068c12dbbe309a98fd00bd24fdfd5a9cb9012 (patch) | |
| tree | 00ef4d381f02a7dd73d3829777f705d16c69c0ae | |
| parent | f2a24bc4f5956d7d59ae42fade277a7826e174da (diff) | |
Added looping bool
| -rw-r--r-- | game/StartGameScript.cpp | 2 | 
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;  	} |