mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +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:
parent
216f55c7b2
commit
17fc346a36
@ -2906,7 +2906,7 @@ void config_set_defaults(void *data)
|
|||||||
|
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
configuration_set_bool(settings,
|
configuration_set_bool(settings,
|
||||||
settings->bools.accessibility_enable, RAIsTalkbackRunning());
|
settings->bools.accessibility_enable, is_screen_reader_enabled());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_MENU
|
#ifdef HAVE_MENU
|
||||||
|
@ -2966,7 +2966,7 @@ end:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
bool RAIsTalkbackRunning(void)
|
bool is_screen_reader_enabled(void)
|
||||||
{
|
{
|
||||||
JNIEnv *env = jni_thread_getenv();
|
JNIEnv *env = jni_thread_getenv();
|
||||||
jboolean jbool = JNI_FALSE;
|
jboolean jbool = JNI_FALSE;
|
||||||
|
@ -367,7 +367,7 @@ void android_app_write_cmd(struct android_app *android_app, int8_t cmd);
|
|||||||
|
|
||||||
extern struct android_app *g_android;
|
extern struct android_app *g_android;
|
||||||
|
|
||||||
bool RAIsTalkbackRunning(void);
|
bool is_screen_reader_enabled(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user