mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 18:30:42 +02:00
MIDI bugfix
This commit is contained in:
parent
ea9690d72b
commit
f133ab65e4
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ void Midi::MidiSetup() {
|
||||||
|
|
||||||
MIDIOUTCAPS outcaps;
|
MIDIOUTCAPS outcaps;
|
||||||
for (unsigned int i = 0; i < midiOutGetNumDevs(); i++) {
|
for (unsigned int i = 0; i < midiOutGetNumDevs(); i++) {
|
||||||
midiOutGetDevCaps(i, &outcaps, sizeof(MIDIINCAPS));
|
midiOutGetDevCaps(i, &outcaps, sizeof(MIDIOUTCAPS));
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (int j = 0; j < midiOutExclude.size(); j++) {
|
for (int j = 0; j < midiOutExclude.size(); j++) {
|
||||||
|
|
Loading…
Reference in a new issue