mirror of https://github.com/PCSX2/pcsx2.git
Lilypad:
Putting the tabulator keypress hack from r4916 on L3 instead of R3. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4929 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
7f0f19ee02
commit
ae5ee1376c
|
@ -349,7 +349,8 @@ void ProcessButtonBinding(Binding *b, ButtonSum *sum, int value) {
|
|||
if (value < b->deadZone || !value) return;
|
||||
|
||||
if ( config.turboKeyHack == 1 ){ // send a tabulator keypress to emulator
|
||||
if ( b->command == 0x12 ){ // R3 button
|
||||
//printf("%x\n", b->command);
|
||||
if ( b->command == 0x11 ){ // L3 button
|
||||
static unsigned int LastCheck = 0;
|
||||
unsigned int t = timeGetTime();
|
||||
if (t - LastCheck < 300 ) return;
|
||||
|
|
Loading…
Reference in New Issue