summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/music/dmusic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music/dmusic.cpp b/src/music/dmusic.cpp
index cb255e7c0..21eb47b44 100644
--- a/src/music/dmusic.cpp
+++ b/src/music/dmusic.cpp
@@ -165,8 +165,8 @@ void MusicDriver_DMusic::PlaySong(const char *filename)
/* release the existing segment if we have any */
if (segment != NULL) {
- segment->Release();
- segment = NULL;
+ this->Stop();
+ if (this->Start(NULL) != NULL) return;
}
/* make a new segment */