diff options
author | Andres Mejia <amejia004@gmail.com> | 2012-05-10 17:23:31 -0400 |
---|---|---|
committer | Andres Mejia <amejia004@gmail.com> | 2012-05-10 17:23:31 -0400 |
commit | 98cf3d0fe2f9e5b0ab44356d51830e9028c95211 (patch) | |
tree | 95784d049fada54f084e223bb9c005e89af60bd3 /tools/EventClients | |
parent | dbbe408dc5905dd748ea6da58d685a9e688495bf (diff) |
Consolidate unimplemented messages in case statement.
Diffstat (limited to 'tools/EventClients')
-rw-r--r-- | tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp index 722ccd9f74..29356cb1c9 100644 --- a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp +++ b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp @@ -99,13 +99,9 @@ void CWiiRemote::MessageCallback(cwiid_wiimote_t *wiiremote, int mesg_count, uni case CWIID_MESG_NUNCHUK: g_WiiRemote.ProcessNunchuck(mesg[i].nunchuk_mesg); break; - case CWIID_MESG_CLASSIC: - //Not implemented - break; case CWIID_MESG_ACC: - //Not implemented - break; case CWIID_MESG_BALANCE: + case CWIID_MESG_CLASSIC: case CWIID_MESG_MOTIONPLUS: //Not implemented break; |