mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
nJoy:
- Enabled Half press for shoulder buttons - Added a option to select controller type - Normal controllers should use the default joystick - Some joysticks dont have a real hat (POV) but fake this with buttons. In this case Joystick (no hat) should be selected. After this is selected, four new buttons will appear for the d-pad. - Next version will probably include keyboard support. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@60 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -8,7 +8,6 @@
|
||||
#define IDB_BITMAP2 104
|
||||
#define IDC_JOYNAME 1001
|
||||
#define IDC_JOYATTACH 1002
|
||||
|
||||
#define IDC_SHOULDERL 1010
|
||||
#define IDC_SHOULDERR 1011
|
||||
#define IDC_A 1012
|
||||
@ -17,16 +16,24 @@
|
||||
#define IDC_Y 1015
|
||||
#define IDC_Z 1016
|
||||
#define IDC_START 1017
|
||||
|
||||
#define IDC_DPAD 1018
|
||||
#define IDC_MX 1019
|
||||
#define IDC_MY 1020
|
||||
#define IDC_SX 1021
|
||||
#define IDC_SY 1022
|
||||
|
||||
#define IDC_DEADZONE 1023
|
||||
#define IDC_HALFPRESS 1024
|
||||
|
||||
#define IDC_DPAD_DOWN 1025
|
||||
#define IDC_DPAD_LEFT 1026
|
||||
#define IDC_DPAD_RIGHT 1027
|
||||
#define IDC_ABOUT_TEXT 1032
|
||||
#define IDC_ABOUT_TEXT2 1033
|
||||
#define IDC_ABOUT_TEXT3 1034
|
||||
#define IDC_CONTROLTYPE 1036
|
||||
#define IDC_DPAD_TEXT1 1037
|
||||
#define IDC_DPAD_TEXT2 1038
|
||||
#define IDC_DPAD_TEXT3 1039
|
||||
#define IDC_DPAD_TEXT4 1040
|
||||
#define IDTEXT_SHOULDERL 2010
|
||||
#define IDTEXT_SHOULDERR 2011
|
||||
#define IDTEXT_A 2012
|
||||
@ -35,26 +42,23 @@
|
||||
#define IDTEXT_Y 2015
|
||||
#define IDTEXT_Z 2016
|
||||
#define IDTEXT_START 2017
|
||||
|
||||
#define IDTEXT_DPAD 2018
|
||||
#define IDTEXT_MX 2019
|
||||
#define IDTEXT_MY 2020
|
||||
#define IDTEXT_SX 2021
|
||||
#define IDTEXT_SY 2022
|
||||
|
||||
|
||||
#define IDC_ABOUT_TEXT 1032
|
||||
#define IDC_ABOUT_TEXT2 1033
|
||||
#define IDC_ABOUT_TEXT3 1034
|
||||
|
||||
#define IDTEXT_HALFPRESS 2024
|
||||
#define IDTEXT_DPAD_DOWN 2025
|
||||
#define IDTEXT_DPAD_LEFT 2026
|
||||
#define IDTEXT_DPAD_RIGHT 2027
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 105
|
||||
#define _APS_NEXT_RESOURCE_VALUE 106
|
||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||
#define _APS_NEXT_CONTROL_VALUE 1036
|
||||
#define _APS_NEXT_CONTROL_VALUE 1041
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user