From 2885d4459335318dc7bfc9f4b2aed41044e325e2 Mon Sep 17 00:00:00 2001 From: Crow-bar Date: Wed, 4 May 2022 10:49:07 +0300 Subject: [PATCH] platform: 60 fps cap fix --- engine/platform/psp/in_psp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/platform/psp/in_psp.c b/engine/platform/psp/in_psp.c index 14fdaf42..34a04fd2 100644 --- a/engine/platform/psp/in_psp.c +++ b/engine/platform/psp/in_psp.c @@ -104,7 +104,7 @@ void Platform_RunEvents( void ) static unsigned int last_buttons; static signed short last_X, last_Y; - sceCtrlReadBufferPositive( &buf, 1 ); + sceCtrlPeekBufferPositive( &buf, 1 ); for( i = 0; i < PSP_MAX_KEYS; i++ ) {