diff options
author | Andres Mejia <amejia004@gmail.com> | 2012-05-10 17:19:47 -0400 |
---|---|---|
committer | Andres Mejia <amejia004@gmail.com> | 2012-05-10 17:19:47 -0400 |
commit | dbbe408dc5905dd748ea6da58d685a9e688495bf (patch) | |
tree | c47a7308fe5825617e04d145e488dde3a70c4967 /tools/EventClients | |
parent | dff26b09cf32f6bc67ed83162b96289c162e43d8 (diff) |
Fix warning about unhandle enumerations.
Diffstat (limited to 'tools/EventClients')
-rw-r--r-- | tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp index a54bf8c8f2..722ccd9f74 100644 --- a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp +++ b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp @@ -105,6 +105,10 @@ void CWiiRemote::MessageCallback(cwiid_wiimote_t *wiiremote, int mesg_count, uni case CWIID_MESG_ACC: //Not implemented break; + case CWIID_MESG_BALANCE: + case CWIID_MESG_MOTIONPLUS: + //Not implemented + break; case CWIID_MESG_UNKNOWN: //... break; |