1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 00:38:44 +00:00

Accessibility: change the is_screen_reader_enabled function name to lower case and match with the function name in Java code

This commit is contained in:
Thiago Seus 2024-06-05 22:04:53 -03:00 committed by LibretroAdmin
parent 216f55c7b2
commit 17fc346a36
3 changed files with 3 additions and 3 deletions

View File

@ -2906,7 +2906,7 @@ void config_set_defaults(void *data)
#ifdef ANDROID
configuration_set_bool(settings,
settings->bools.accessibility_enable, RAIsTalkbackRunning());
settings->bools.accessibility_enable, is_screen_reader_enabled());
#endif
#ifdef HAVE_MENU

View File

@ -2966,7 +2966,7 @@ end:
#endif
#ifdef ANDROID
bool RAIsTalkbackRunning(void)
bool is_screen_reader_enabled(void)
{
JNIEnv *env = jni_thread_getenv();
jboolean jbool = JNI_FALSE;

View File

@ -367,7 +367,7 @@ void android_app_write_cmd(struct android_app *android_app, int8_t cmd);
extern struct android_app *g_android;
bool RAIsTalkbackRunning(void);
bool is_screen_reader_enabled(void);
#endif