From f9b78e98362249ca774aa6fdb48b1ea9612d2418 Mon Sep 17 00:00:00 2001 From: David Madison Date: Tue, 30 Oct 2018 21:56:12 -0400 Subject: [PATCH] Fix USB class declaration This was previously defined as "XInput" but used elsewhere as "XInputUSB". Seemed to work fine with optimization, but this makes the declaration consistent with other usage. --- .../hardware/teensy/avr/cores/teensy3/usb_inst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp b/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp index cb9a2ea..424645b 100644 --- a/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp +++ b/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp @@ -73,7 +73,7 @@ usb_serial_class Serial; #endif #ifdef USB_XINPUT -usb_xinput_class XInput; +usb_xinput_class XInputUSB; usb_serial_class Serial; #endif