summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-11-17 10:43:09 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-11-17 11:06:13 -0500
commit170f72156bd79aac3a648a5f1ce578d7484553b7 (patch)
tree4905ade6e98377b0d44c7444d066f428f5aa9441 /apps/settings_list.c
parent7ff3c94e1340f6a78b232a631832c8fd4199a00a (diff)
downloadrockbox-170f72156bd79aac3a648a5f1ce578d7484553b7.tar.gz
rockbox-170f72156bd79aac3a648a5f1ce578d7484553b7.zip
lang: Drop all deprecated strings, and rename LANG__NEVER to LANG_NEVER
Change-Id: Ie1a1cb04ecb566b75d9884b98a8c4e37a4e8736f
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 71085906ce..e296582482 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -389,7 +389,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
389 (void) buffer_size; 389 (void) buffer_size;
390 (void) unit; 390 (void) unit;
391 if (val == -1) 391 if (val == -1)
392 return str(LANG__NEVER); 392 return str(LANG_NEVER);
393 else if (val == 0) 393 else if (val == 0)
394 return str(LANG_ALWAYS); 394 return str(LANG_ALWAYS);
395 return buffer; 395 return buffer;
@@ -398,7 +398,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
398static int32_t getlang_time_unit_0_is_always(int value, int unit) 398static int32_t getlang_time_unit_0_is_always(int value, int unit)
399{ 399{
400 if (value == -1) 400 if (value == -1)
401 return LANG__NEVER; 401 return LANG_NEVER;
402 else if (value == 0) 402 else if (value == 0)
403 return LANG_ALWAYS; 403 return LANG_ALWAYS;
404 else 404 else