diff options
author | Twinaphex | 2015-11-18 02:20:01 +0100 |
---|---|---|
committer | Twinaphex | 2015-11-18 02:20:01 +0100 |
commit | 7853c498e88becf8ddf7aae21f741faf02498749 (patch) | |
tree | 0c9076dd37c2414b2285a993a9e8603d8d5f50af /plugins | |
parent | ce36c10b348009c13282048540d6d9c553bbcc96 (diff) | |
parent | 2cab5787882abef4508e5b45d18dae79a041c298 (diff) | |
download | pcsx_rearmed-7853c498e88becf8ddf7aae21f741faf02498749.tar.gz pcsx_rearmed-7853c498e88becf8ddf7aae21f741faf02498749.tar.bz2 pcsx_rearmed-7853c498e88becf8ddf7aae21f741faf02498749.zip |
Merge pull request #20 from phaseIV/master
patch to support the neGcon racing controller
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dfinput/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/dfinput/main.c b/plugins/dfinput/main.c index 475ea07..c3adedd 100644 --- a/plugins/dfinput/main.c +++ b/plugins/dfinput/main.c @@ -44,6 +44,7 @@ static int old_controller_type1 = -1, old_controller_type2 = -1; PAD##n##_poll = PADpoll_guncon; \ guncon_init(); \ break; \ + case PSE_PAD_TYPE_NEGCON: \ case PSE_PAD_TYPE_GUN: \ default: \ PAD##n##_startPoll = PAD##n##__startPoll; \ @@ -52,6 +53,7 @@ static int old_controller_type1 = -1, old_controller_type2 = -1; } \ } + void dfinput_activate(void) { PadDataS pad; |