mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Start with one free buffer to match things.
This commit is contained in:
parent
aea9b16a04
commit
f6009e477f
1 changed files with 3 additions and 1 deletions
|
@ -226,7 +226,7 @@ void __CtrlInit()
|
|||
ctrlInited = true;
|
||||
}
|
||||
|
||||
ctrlBuf = 0;
|
||||
ctrlBuf = 1;
|
||||
ctrlBufRead = 0;
|
||||
ctrlOldButtons = 0;
|
||||
ctrlLatchBufs = 0;
|
||||
|
@ -239,6 +239,8 @@ void __CtrlInit()
|
|||
memset(&ctrlBufs, 0, sizeof(ctrlBufs));
|
||||
ctrlCurrent.analog[0] = 128;
|
||||
ctrlCurrent.analog[1] = 128;
|
||||
ctrlBufs[0].analog[0] = 128;
|
||||
ctrlBufs[0].analog[1] = 128;
|
||||
}
|
||||
|
||||
void sceCtrlInit()
|
||||
|
|
Loading…
Add table
Reference in a new issue