From 645513cbf95913f8bb477f9f9c539fcbb28da527 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Fri, 13 Mar 2015 19:02:28 -0400 Subject: [PATCH] Loop the death music. --- src/title.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/title.cpp b/src/title.cpp index dea10e2..3c2eaa9 100644 --- a/src/title.cpp +++ b/src/title.cpp @@ -628,7 +628,7 @@ void gameover() clearScreen(black); SDL_Delay(1000); - audio_playMusic("music/death.ogg", 1); + audio_playMusic("music/death.ogg", -1); int x = (screen->w - gameover->w) / 2; int y = (screen->h - gameover->h) / 2;