mirror of
https://github.com/Oibaf66/fbzx-wii.git
synced 2024-11-24 17:16:57 +01:00
Fixed auto virtual keyboard for windows version
This commit is contained in:
parent
aff20a44cc
commit
6c3218830b
@ -1586,16 +1586,14 @@ inline void read_keyboard () {
|
||||
if ((!wd->ir.valid)&&(ordenador.vk_is_active)) virtkey_ir_deactivate();
|
||||
#else
|
||||
int x=0,y=0 ;
|
||||
SDL_GetRelativeMouseState(&x,&y);
|
||||
if (x||y)
|
||||
SDL_GetMouseState(&x,&y);
|
||||
if ((x>64)&&(x<576)&&(y>90)&&(y<390))
|
||||
{
|
||||
ordenador.vk_is_active=1;
|
||||
SDL_ShowCursor(SDL_ENABLE);
|
||||
if (!ordenador.vk_is_active) virtkey_ir_activate();
|
||||
}
|
||||
else
|
||||
{
|
||||
ordenador.vk_is_active=0;
|
||||
SDL_ShowCursor(SDL_DISABLE);
|
||||
if (ordenador.vk_is_active) virtkey_ir_deactivate();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user