mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
(retroarch.c) move variables to top
This commit is contained in:
parent
ed84fd73a3
commit
2688805872
@ -2497,10 +2497,14 @@ void dir_check_defaults(void)
|
||||
|
||||
#ifdef HAVE_ACCESSIBILITY
|
||||
/* Is text-to-speech accessibility turned on? */
|
||||
static PROCESS_INFORMATION pi;
|
||||
|
||||
static bool accessibility_enabled = false;
|
||||
|
||||
static bool pi_set = false;
|
||||
|
||||
/* Accessibility */
|
||||
static int speak_pid = 0;
|
||||
static int speak_pid = 0;
|
||||
|
||||
bool is_accessibility_enabled(void)
|
||||
{
|
||||
@ -28707,9 +28711,6 @@ static const char *accessibility_win_language_code(const char* language)
|
||||
return "";
|
||||
}
|
||||
|
||||
static PROCESS_INFORMATION pi;
|
||||
static bool pi_set = false;
|
||||
|
||||
static bool terminate_win32_process(PROCESS_INFORMATION pi)
|
||||
{
|
||||
TerminateProcess(pi.hProcess,0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user