summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-01-25 22:38:59 +0000
committerJuan J. Martinez <jjm@usebox.net>2021-01-25 22:38:59 +0000
commit5d03db6fc62b0ea66ffed6b5422b52e647efa894 (patch)
tree486598b8dff9e4f4fff0627f9a5099b56bf0de31
parentb2ab8f26cc2f4216e18f050234519684cca5bca8 (diff)
downloadubox-msx-lib-5d03db6fc62b0ea66ffed6b5422b52e647efa894.tar.gz
ubox-msx-lib-5d03db6fc62b0ea66ffed6b5422b52e647efa894.zip
Fix: actually, stop the music by playing silence
-rw-r--r--game/src/game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/game.c b/game/src/game.c
index 5bfeffb..d4942c1 100644
--- a/game/src/game.c
+++ b/game/src/game.c
@@ -434,7 +434,7 @@ void run_game()
}
// stop the in game music
- mplayer_init(SONG, SONG_IN_GAME);
+ mplayer_init(SONG, SONG_SILENCE);
// hide all the sprites before going back to the menu
spman_hide_all_sprites();
}