mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
USB: Top Shot Elite device emulation
This commit is contained in:
parent
a1a38b7b39
commit
088b594fa8
15 changed files with 587 additions and 19 deletions
|
|
@ -205,6 +205,17 @@ namespace input
|
|||
.capabilites = 0x0
|
||||
}
|
||||
},
|
||||
{
|
||||
product_type::top_shot_elite,
|
||||
{
|
||||
.type = product_type::top_shot_elite,
|
||||
.class_id = CELL_PAD_FAKE_TYPE_TOP_SHOT_ELITE,
|
||||
.vendor_id = vendor_id::sony_cea,
|
||||
.product_id = product_id::top_shot_elite,
|
||||
.pclass_profile = 0x0,
|
||||
.capabilites = 0x0
|
||||
}
|
||||
},
|
||||
{
|
||||
product_type::udraw_gametablet,
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ namespace input
|
|||
ps_move_navigation,
|
||||
ride_skateboard,
|
||||
guncon_3,
|
||||
top_shot_elite,
|
||||
udraw_gametablet,
|
||||
};
|
||||
|
||||
|
|
@ -44,6 +45,7 @@ namespace input
|
|||
ps_move_navigation = 0x042F, // PlayStation Move navigation controller
|
||||
dance_dance_revolution_mat = 0x1010, // Dance Dance Revolution Dance Mat Controller
|
||||
ride_skateboard = 0x0400, // Tony Hawk RIDE Skateboard Controller
|
||||
top_shot_elite = 0x04A0, // Top Shot Elite Controller
|
||||
guncon_3 = 0x0800, // GunCon 3 Controller
|
||||
udraw_gametablet = 0xCB17, // uDraw GameTablet Controller
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue