Advertisement
Guest User

Untitled

a guest
Jul 10th, 2015
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. input_device = "USB,2-axis 8-button gamepad"
  2. input_driver = "udev"
  3. input_vendor_id = 1411
  4. input_product_id = 8288
  5.  
  6. # =======================================================================================
  7. # Mapping Keys : iBuffalo SNES Classic Gamepad
  8. # =======================================================================================
  9. # Button A = "0"
  10. # Button B = "1"
  11. # Button X = "2"
  12. # Button Y = "3"
  13. # Button Start = "7"
  14. # Button Select = "6"
  15. # Button L = "4"
  16. # Button R = "5"
  17. # Button DPad-UP = "-1"
  18. # Button DPad-DOWN = "+1"
  19. # Button DPad-LEFT = "-0"
  20. # Button DPad-RIGHT = "+0"
  21.  
  22. # =======================================================================================
  23. # Config : iBuffalo SNES Classic Gamepad : Par défaut
  24. # =======================================================================================
  25. input_a_btn = "0"
  26. input_b_btn = "1"
  27. input_x_btn = "2"
  28. input_y_btn = "3"
  29. input_start_btn = "7"
  30. input_select_btn = "6"
  31. input_l_btn = "4"
  32. input_r_btn = "5"
  33. input_up_axis = "-1"
  34. input_down_axis = "+1"
  35. input_left_axis = "-0"
  36. input_right_axis = "+0"
  37.  
  38. # =======================================================================================
  39. # Config : iBuffalo SNES Classic Gamepad : Hotkeys
  40. # [Select] + [Start] : Leave the game
  41. # [Select] + [R] : Save state
  42. # [Select] + [L] : Load state
  43. # [Select] + [B] : Reset
  44. # [Select] + [DPad-LEFT] : Previous shader
  45. # [Select] + [DPad-RIGHT] : Next shader
  46. # [Select] + [DPad-DOWN] : Decrease state slot
  47. # [Select] + [DPad-UP] : Increase state slot
  48. # =======================================================================================
  49. input_enable_hotkey_btn = "6"
  50. input_exit_emulator_btn = "7"
  51. input_save_state_btn = "5"
  52. input_load_state_btn = "4"
  53. input_reset_btn = "1"
  54. input_shader_prev_axis = "-0"
  55. input_shader_next_axis = "+0"
  56. input_state_slot_increase_axis = "-1"
  57. input_state_slot_decrease_axis = "+1"
  58.  
  59.  
  60. # =======================================================================================
  61. # Original config : iBuffalo SNES Classic Gamepad
  62. # =======================================================================================
  63. # input_device = "USB,2-axis 8-button gamepad"
  64. # input_driver = "udev"
  65. # input_vendor_id = 1411
  66. # input_product_id = 8288
  67. # input_b_btn = "1"
  68. # input_y_btn = "3"
  69. # input_select_btn = "6"
  70. # input_start_btn = "7"
  71. # input_up_axis = "-1"
  72. # input_down_axis = "+1"
  73. # input_left_axis = "-0"
  74. # input_right_axis = "+0"
  75. # input_a_btn = "0"
  76. # input_x_btn = "2"
  77. # input_l_btn = "4"
  78. # input_r_btn = "5"
  79. # input_enable_hotkey_btn = "6"
  80. # input_exit_emulator_btn = "7"
  81. # input_menu_toggle_btn = "2"
  82. # input_load_state_btn = "4"
  83. # input_save_state_btn = "5"
  84. # input_reset_btn = "1"
  85. # input_state_slot_increase_axis = "+0"
  86. # input_state_slot_decrease_axis = "-0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement