summaryrefslogtreecommitdiff
path: root/apps/enc_config.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2023-09-22 09:57:48 -0400
committerSolomon Peachy <pizza@shaftnet.org>2023-09-22 10:00:46 -0400
commit8cc3266b2a172a51dc12d05e8e1a06485b895e48 (patch)
treef45e7c9e273037d2f4ea0c72b740c4241458eeb2 /apps/enc_config.c
parentcb3a6877fcbb001a8ee9afd3e4a25579ac40f805 (diff)
downloadrockbox-8cc3266b2a172a51dc12d05e8e1a06485b895e48.tar.gz
rockbox-8cc3266b2a172a51dc12d05e8e1a06485b895e48.zip
Settings: Rename INT/BOOL setting type enum to RB_INT/RB_BOOL
....Because INT and BOOL are already defined in mingw32. Change-Id: I28ab8189c00002c8f68bc9d0c23d2ae78d9e33d0
Diffstat (limited to 'apps/enc_config.c')
-rw-r--r--apps/enc_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/enc_config.c b/apps/enc_config.c
index b70ac03888..d06ac84b5f 100644
--- a/apps/enc_config.c
+++ b/apps/enc_config.c
@@ -183,7 +183,7 @@ static bool mp3_enc_bitrate(struct menucallback_data *data)
183 183
184 int index = round_value_to_list32(cfg->mp3_enc.bitrate, rate_list, 184 int index = round_value_to_list32(cfg->mp3_enc.bitrate, rate_list,
185 n_rates, false); 185 n_rates, false);
186 bool res = set_option(str(LANG_BITRATE), &index, INT, 186 bool res = set_option(str(LANG_BITRATE), &index, RB_INT,
187 items, n_rates, NULL); 187 items, n_rates, NULL);
188 index = round_value_to_list32(rate_list[index], mp3_enc_bitr, 188 index = round_value_to_list32(rate_list[index], mp3_enc_bitr,
189 MP3_ENC_NUM_BITR, false); 189 MP3_ENC_NUM_BITR, false);