Didn't have a chance to dig into this, but on Windows 7 I couldn't get ports to be opened by their name.
bool ofxRtMidiOut::openPort(string deviceName)
The equality operator was failing on the string comparison in this method. My hacked fix was to convert them to c style strings and use strcmp.
Didn't have a chance to dig into this, but on Windows 7 I couldn't get ports to be opened by their name.
bool ofxRtMidiOut::openPort(string deviceName)
The equality operator was failing on the string comparison in this method. My hacked fix was to convert them to c style strings and use strcmp.