diff --git a/retroarch.c b/retroarch.c index 14e019ba93..f8ff5b4efc 100644 --- a/retroarch.c +++ b/retroarch.c @@ -2148,13 +2148,13 @@ static void handle_translation_cb( *video_st = video_state_get_ptr(); const enum retro_pixel_format video_driver_pix_fmt = video_st->pix_fmt; + access_state_t *access_st = access_state_get_ptr(); #ifdef HAVE_GFX_WIDGETS bool gfx_widgets_paused = video_st->widgets_paused; #endif #ifdef HAVE_ACCESSIBILITY bool accessibility_enable = settings->bools.accessibility_enable; unsigned accessibility_narrator_speech_speed = settings->uints.accessibility_narrator_speech_speed; - access_state_t *access_st = access_state_get_ptr(); #ifdef HAVE_GFX_WIDGETS /* When auto mode is on, we turn off the overlay * once we have the result for the next call.*/ @@ -2785,8 +2785,8 @@ bool run_translation_service(settings_t *settings, bool paused) *video_st = video_state_get_ptr(); const enum retro_pixel_format video_driver_pix_fmt = video_st->pix_fmt; -#ifdef HAVE_ACCESSIBILITY access_state_t *access_st = access_state_get_ptr(); +#ifdef HAVE_ACCESSIBILITY #ifdef HAVE_TRANSLATE input_driver_state_t *input_st = input_state_get_ptr(); #endif