engine: client: console: fixed console scrolling on psvita platform

This commit is contained in:
SNMetamorph 2023-03-26 18:37:34 +04:00 committed by Alibek Omarov
parent 48e199bfa1
commit 3361e74f54
1 changed files with 2 additions and 2 deletions

View File

@ -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;