From 735a07cdf961cb74dfef5a1713f824957f43443f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 9 Jun 2014 18:28:28 +0200 Subject: [PATCH] (PS3) Input driver - cleanup --- input/ps3_input.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/input/ps3_input.c b/input/ps3_input.c index 64db013850..aad35e8989 100644 --- a/input/ps3_input.c +++ b/input/ps3_input.c @@ -49,26 +49,6 @@ typedef struct float z; } sensor_t; -const struct platform_bind platform_keys[] = { - { (1ULL << RETRO_DEVICE_ID_JOYPAD_B), "Cross button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_Y), "Square button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_SELECT), "Select button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_START), "Start button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_UP), "D-Pad Up" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_DOWN), "D-Pad Down" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_LEFT), "D-Pad Left" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_RIGHT), "D-Pad Right" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_A), "Circle button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_X), "Triangle button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_L), "L1 button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_R), "R1 button" }, - { (1ULL << RETRO_DEVICE_ID_JOYPAD_L2), "L2 button" }, - { (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 { uint64_t pad_state[MAX_PADS];