mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
New Wiimote Plugin: Fix Emulated Wiimote Problem.(fixes issue 3230) Made the "Connected to X Wiimotes" text update on all tabs when clicking "Refresh"/"Pair Up". Some other cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6216 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -136,9 +136,20 @@ struct wm_drums_extension
|
||||
u16 bt; // buttons
|
||||
};
|
||||
|
||||
struct wm_report {
|
||||
struct wm_report
|
||||
{
|
||||
u8 wm;
|
||||
u8 data[0];
|
||||
union
|
||||
{
|
||||
u8 data[0];
|
||||
struct
|
||||
{
|
||||
u8 rumble : 1; // enable/disable rumble
|
||||
// only valid for certain reports
|
||||
u8 ack : 1; // respond with an ack
|
||||
u8 enable : 1; // enable/disable certain features
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#define WM_RUMBLE 0x10
|
||||
|
Reference in New Issue
Block a user