Remove remaining decryption code.

This commit is contained in:
Ryan Pavlik
2012-06-28 17:10:34 -05:00
parent ee82f27792
commit 5f3d72c2c1
2 changed files with 1 additions and 10 deletions

View File

@@ -127,11 +127,6 @@ void guitar_hero_3_disconnected(struct guitar_hero_3_t* gh3) {
* @param msg The message specified in the event packet.
*/
void guitar_hero_3_event(struct guitar_hero_3_t* gh3, byte* msg) {
int i;
/* decrypt data */
for (i = 0; i < 6; ++i)
msg[i] = (msg[i] ^ 0x17) + 0x17;
guitar_hero_3_pressed_buttons(gh3, from_big_endian_uint16_t(msg + 4));