Changeset 214 in flair-src for trunk/tools/Controller
- Timestamp:
- Feb 7, 2018, 5:49:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/Controller/DualShock3/src/DualShock3.cpp
r148 r214 18 18 #include "DualShock3.h" 19 19 #include <Controller.h> 20 #include < cvmatrix.h>20 #include <Matrix.h> 21 21 #include <Tab.h> 22 22 #include <TabWidget.h> … … 96 96 axisDescriptor->SetElementName(i, 0, GetAxisDescription(i)); 97 97 } 98 axis = new cvmatrix((IODevice *)this, axisDescriptor, Int16Type);98 axis = new Matrix((IODevice *)this, axisDescriptor, Int16Type); 99 99 delete axisDescriptor; 100 100 AddDataToLog(axis); … … 107 107 buttonDescriptor->SetElementName(i, 0, GetButtonDescription(i)); 108 108 } 109 button = new cvmatrix((IODevice *)this, buttonDescriptor, Int8Type);109 button = new Matrix((IODevice *)this, buttonDescriptor, Int8Type); 110 110 AddDataToLog(button); 111 111
Note:
See TracChangeset
for help on using the changeset viewer.