diff options
author | Max Kellermann <max@duempel.org> | 2013-10-25 19:09:22 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-25 19:12:38 +0200 |
commit | 6d475c40de567d778fa6f96c379687a8bf83f82b (patch) | |
tree | 6302688c49ab48a514b593812688610ca9da2b75 /src/ReplayGainConfig.cxx | |
parent | ed7891bf014c5085240361d605a0eaf24f74e7df (diff) | |
download | mpd-6d475c40de567d778fa6f96c379687a8bf83f82b.tar.gz mpd-6d475c40de567d778fa6f96c379687a8bf83f82b.tar.xz mpd-6d475c40de567d778fa6f96c379687a8bf83f82b.zip |
ReplayGainInfo: use CamelCase for struct name
Diffstat (limited to '')
-rw-r--r-- | src/ReplayGainConfig.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ReplayGainConfig.cxx b/src/ReplayGainConfig.cxx index ec54dd3e7..36c2ff545 100644 --- a/src/ReplayGainConfig.cxx +++ b/src/ReplayGainConfig.cxx @@ -29,7 +29,7 @@ #include <stdlib.h> #include <string.h> -enum replay_gain_mode replay_gain_mode = REPLAY_GAIN_OFF; +ReplayGainMode replay_gain_mode = REPLAY_GAIN_OFF; static constexpr bool DEFAULT_REPLAYGAIN_LIMIT = true; @@ -134,10 +134,10 @@ void replay_gain_global_init(void) replay_gain_limit = config_get_bool(CONF_REPLAYGAIN_LIMIT, DEFAULT_REPLAYGAIN_LIMIT); } -enum replay_gain_mode +ReplayGainMode replay_gain_get_real_mode(bool random_mode) { - enum replay_gain_mode rgm; + ReplayGainMode rgm; rgm = replay_gain_mode; |