Linux: Fixed compile warnings about unused variables.
parent
1fd2646c60
commit
099e8a685b
|
@ -43,17 +43,16 @@ static void
|
|||
InitIME()
|
||||
{
|
||||
static SDL_bool inited = SDL_FALSE;
|
||||
const char *im_module;
|
||||
const char *xmodifiers;
|
||||
#ifdef HAVE_FCITX_FRONTEND_H
|
||||
const char *im_module = SDL_getenv("SDL_IM_MODULE");
|
||||
const char *xmodifiers = SDL_getenv("XMODIFIERS");
|
||||
#endif
|
||||
|
||||
if (inited == SDL_TRUE)
|
||||
return;
|
||||
|
||||
inited = SDL_TRUE;
|
||||
|
||||
im_module = SDL_getenv("SDL_IM_MODULE");
|
||||
xmodifiers = SDL_getenv("XMODIFIERS");
|
||||
|
||||
/* See if fcitx IME support is being requested */
|
||||
#ifdef HAVE_FCITX_FRONTEND_H
|
||||
if (!SDL_IME_Init_Real &&
|
||||
|
|
Loading…
Reference in New Issue