Advertisement
djhonga2001

Untitled

May 21st, 2016
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. static const ButtonsWithNames ALL_BUTTONS[] =
  2. {
  3. { ControllerButtonConfig::CONTROLLER_BTN_DPAD_U, INPUT_FRONTEND_UP, false },
  4. { ControllerButtonConfig::CONTROLLER_BTN_DPAD_D, INPUT_FRONTEND_DOWN, false },
  5. { ControllerButtonConfig::CONTROLLER_BTN_DPAD_L, INPUT_FRONTEND_LEFT, false },
  6. { ControllerButtonConfig::CONTROLLER_BTN_DPAD_R, INPUT_FRONTEND_RIGHT, false },
  7. { ControllerButtonConfig::CONTROLLER_BTN_X, INPUT_FRONTEND_X, false },
  8. { ControllerButtonConfig::CONTROLLER_BTN_Y, INPUT_FRONTEND_Y, false },
  9. { ControllerButtonConfig::CONTROLLER_BTN_A, INPUT_FRONTEND_ACCEPT, false },
  10. { ControllerButtonConfig::CONTROLLER_BTN_B, INPUT_FRONTEND_CANCEL, false },
  11. { ControllerButtonConfig::CONTROLLER_BTN_SHOULDER_L, INPUT_FRONTEND_LS, false },
  12. { ControllerButtonConfig::CONTROLLER_BTN_SHOULDER_R, INPUT_FRONTEND_RS, false },
  13.  
  14. { ControllerButtonConfig::CONTROLLER_BTN_TRIGGER_L, INPUT_FRONTEND_LT, true },
  15. { ControllerButtonConfig::CONTROLLER_BTN_TRIGGER_R, INPUT_FRONTEND_RT, true },
  16.  
  17. { ControllerButtonConfig::CONTROLLER_LSTICK_CLICK, INPUT_FRONTEND_LB, false },
  18. { ControllerButtonConfig::CONTROLLER_RSTICK_CLICK, INPUT_FRONTEND_RB, false },
  19. { ControllerButtonConfig::CONTROLLER_BTN_START, INPUT_FRONTEND_PAUSE, false },
  20. { ControllerButtonConfig::CONTROLLER_BTN_BACK, INPUT_FRONTEND_SELECT, false },
  21.  
  22. { ControllerButtonConfig::CONTROLLER_LSTICK_L, INPUT_FRONTEND_LEFT, true },
  23. { ControllerButtonConfig::CONTROLLER_LSTICK_R, INPUT_FRONTEND_RIGHT, true },
  24. { ControllerButtonConfig::CONTROLLER_LSTICK_U, INPUT_FRONTEND_UP, true },
  25. { ControllerButtonConfig::CONTROLLER_LSTICK_D, INPUT_FRONTEND_DOWN, true },
  26. { ControllerButtonConfig::CONTROLLER_RSTICK_L, INPUT_FRONTEND_RLEFT, true },
  27. { ControllerButtonConfig::CONTROLLER_RSTICK_R, INPUT_FRONTEND_RRIGHT, true },
  28. { ControllerButtonConfig::CONTROLLER_RSTICK_U, INPUT_FRONTEND_RUP, true },
  29. { ControllerButtonConfig::CONTROLLER_RSTICK_D, INPUT_FRONTEND_RDOWN, true },
  30.  
  31. { ControllerButtonConfig::CONTROLLER_NOT_BOUND, 0, false }
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement