input: improve touch emulation
This commit is contained in:
parent
faf592adb4
commit
7770b1a82b
1 changed files with 6 additions and 1 deletions
|
@ -362,7 +362,12 @@ void IN_MouseEvent( void )
|
||||||
|
|
||||||
// touch emu: handle motion
|
// touch emu: handle motion
|
||||||
if( CVAR_TO_BOOL( touch_emulate ))
|
if( CVAR_TO_BOOL( touch_emulate ))
|
||||||
Touch_KeyEvent( K_MOUSE1, 2 );
|
{
|
||||||
|
if( Key_IsDown( K_SHIFT ) )
|
||||||
|
Touch_KeyEvent( K_MOUSE2, 2 );
|
||||||
|
else
|
||||||
|
Touch_KeyEvent( K_MOUSE1, 2 );
|
||||||
|
}
|
||||||
|
|
||||||
if( !in_mouseinitialized || !in_mouseactive )
|
if( !in_mouseinitialized || !in_mouseactive )
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue