diff options
Diffstat (limited to 'src/PlayerCommands.cxx')
-rw-r--r-- | src/PlayerCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PlayerCommands.cxx b/src/PlayerCommands.cxx index a9cde7fd5..2bd6fc4e6 100644 --- a/src/PlayerCommands.cxx +++ b/src/PlayerCommands.cxx @@ -31,6 +31,7 @@ extern "C" { #include "audio_format.h" #include "volume.h" #include "replay_gain_config.h" +#include "output_all.h" } #include "PlayerControl.hxx" @@ -280,6 +281,7 @@ handle_random(Client *client, G_GNUC_UNUSED int argc, char *argv[]) return COMMAND_RETURN_ERROR; playlist_set_random(&client->playlist, client->player_control, status); + audio_output_all_set_replay_gain_mode(replay_gain_get_real_mode(client->playlist.queue.random)); return COMMAND_RETURN_OK; } @@ -386,6 +388,8 @@ handle_replay_gain_mode(Client *client, return COMMAND_RETURN_ERROR; } + audio_output_all_set_replay_gain_mode(replay_gain_get_real_mode(client->playlist.queue.random)); + return COMMAND_RETURN_OK; } |