From 0597b6e7c899f6cf4c54619b5a8e475bdd43f8ed Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 2 Nov 2013 01:25:25 +0100 Subject: [PATCH] (PS3) Fixes input - turbo key shenanigans --- ps3/ps3_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ps3/ps3_input.c b/ps3/ps3_input.c index 32f090ddca..9b299bb929 100644 --- a/ps3/ps3_input.c +++ b/ps3/ps3_input.c @@ -57,6 +57,7 @@ const struct platform_bind platform_keys[] = { { (1ULL << RETRO_DEVICE_ID_JOYPAD_R2), "R2 button" }, { (1ULL << RETRO_DEVICE_ID_JOYPAD_L3), "L3 button" }, { (1ULL << RETRO_DEVICE_ID_JOYPAD_R3), "R3 button" }, + { (1ULL << RARCH_TURBO_ENABLE), "Turbo button (unmapped)" }, }; typedef struct ps3_input @@ -356,7 +357,6 @@ static void ps3_input_set_keybinds(void *data, unsigned device, static void* ps3_input_init(void) { - unsigned i; ps3_input_t *ps3 = (ps3_input_t*)calloc(1, sizeof(*ps3)); if (!ps3) return NULL;