Commit a98c9363 authored by Ted John's avatar Ted John
Browse files

Fix #5636: Pausing the game shows mute button as active

parent c1400a12
Showing with 3 additions and 2 deletions
+3 -2
......@@ -32,6 +32,7 @@
- Fix: [#5445] Patrol area not imported from RCT1 saves and scenarios.
- Fix: [#5585] Inconsistent zooming with mouse wheel.
- Fix: [#5609] Vehicle switching may cause '0 cars per train' to be set.
- Fix: [#5636] Pausing the game shows mute button as active.
- Fix: [#5741] Land rights indicators disappear when switching views.
- Fix: [#5788] Empty scenario names cause invisible entries in scenario list.
- Fix: [#6101] Rides remain in ride list window briefly after demolition.
......
......@@ -4997,7 +4997,7 @@ static void setup_scenery_selection(rct_window* w)
gGamePaused |= GAME_PAUSED_SAVING_TRACK;
gTrackDesignSaveMode = true;
audio_pause_sounds();
audio_stop_all_music_and_sounds();
rct_window* w_main = window_get_main();
......
......@@ -186,7 +186,7 @@ rct_window * window_save_prompt_open()
// Pause the game
gGamePaused |= GAME_PAUSED_MODAL;
audio_pause_sounds();
audio_stop_all_music_and_sounds();
window_invalidate_by_class(WC_TOP_TOOLBAR);
stringId = window_save_prompt_labels[prompt_mode][0];
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment