Small cleanup

This commit is contained in:
twinaphex 2016-08-08 01:21:20 +02:00
parent ecc625dbf1
commit 10e35d4d75

View File

@ -138,8 +138,8 @@ static void psp_joypad_poll(void)
unsigned j, k;
SceCtrlData state_tmp;
int32_t ret;
unsigned i_tmp;
unsigned i = i_tmp = player;
unsigned p;
unsigned i = p = player;
#if defined(SN_TARGET_PSP2) || defined(VITA)
/* Dumb hack, but here's the explanation -
@ -147,10 +147,10 @@ static void psp_joypad_poll(void)
* can be 0 or 1 to read the first controller on
* a PSTV, but HAS to be 0 for a real VITA and 2
* for the 2nd controller on a PSTV */
if (i_tmp == 1)
i_tmp = 2;
if (p == 1)
p = 2;
#endif
ret = CtrlPeekBufferPositive(i_tmp, &state_tmp, 1);
ret = CtrlPeekBufferPositive(p, &state_tmp, 1);
#ifdef HAVE_KERNEL_PRX
state_tmp.Buttons = (state_tmp.Buttons & 0x0000FFFF)