From e205812516cb245c16f94c5e042f4faf232b1abe Mon Sep 17 00:00:00 2001 From: Yves Richard Date: Tue, 7 Nov 2023 10:52:47 +0100 Subject: [PATCH] Always declare function os_setting_update() regardless of HAVE_LANGUAGE_PACK flag --- include/os_settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/os_settings.h b/include/os_settings.h index 42ef5ed1a..b0d9bf843 100644 --- a/include/os_settings.h +++ b/include/os_settings.h @@ -138,10 +138,10 @@ SYSCALL PERMISSION(APPLICATION_FLAG_BOLOS_SETTINGS) void os_setting_set(unsigned PLENGTH(length), unsigned int length); -#ifdef HAVE_LANGUAGE_PACK // Shift preferences settings (could be needed after an update) void os_setting_update(void); +#ifdef HAVE_LANGUAGE_PACK // Prototypes for language helper functions unsigned int os_setting_get_language(void); void os_setting_set_language(unsigned int language);