~mkas/mixxx/mysql

« back to all changes in this revision

Viewing changes to mixxx/src/controllers/midi/hss1394controller.cpp

  • Committer: MKas
  • Date: 2012-11-03 12:55:54 UTC
  • Revision ID: mkas@tux.lt-20121103125554-ez5ajqyk7bwehrp2
merge with trunk + sql fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
}
165
165
 
166
166
void Hss1394Controller::send(unsigned int word) {
167
 
    unsigned char data[2];
 
167
    unsigned char data[3];
168
168
    data[0] = word & 0xFF;
169
169
    data[1] = (word >> 8) & 0xFF;
170
170
    data[2] = (word >> 16) & 0xFF;