From ae5ee1376c1ea692d0854e0e09494cb5229c5edf Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sun, 9 Oct 2011 16:20:13 +0000 Subject: [PATCH] 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 --- plugins/LilyPad/LilyPad.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/LilyPad/LilyPad.cpp b/plugins/LilyPad/LilyPad.cpp index 10edc9e5b7..a3431cea20 100644 --- a/plugins/LilyPad/LilyPad.cpp +++ b/plugins/LilyPad/LilyPad.cpp @@ -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;