mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 11:00:33 +00:00
engine: client: console: fixed console scrolling on psvita platform
This commit is contained in:
parent
48e199bfa1
commit
3361e74f54
@ -1596,13 +1596,13 @@ void Key_Console( int key )
|
||||
}
|
||||
|
||||
// console scrolling
|
||||
if( key == K_PGUP )
|
||||
if( key == K_PGUP || key == K_DPAD_UP )
|
||||
{
|
||||
Con_PageUp( 1 );
|
||||
return;
|
||||
}
|
||||
|
||||
if( key == K_PGDN )
|
||||
if( key == K_PGDN || key == K_DPAD_DOWN )
|
||||
{
|
||||
Con_PageDown( 1 );
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user