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:
ramapcsx2 2011-10-09 16:20:13 +00:00
parent 7f0f19ee02
commit ae5ee1376c
1 changed files with 2 additions and 1 deletions

View File

@ -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;