forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
25 lines
1.5 KiB
C++
25 lines
1.5 KiB
C++
--- src/qsynthOptions.cpp.orig 2011-03-30 20:53:04.000000000 +0900
|
|
+++ src/qsynthOptions.cpp 2012-09-25 21:29:15.000000000 +0900
|
|
@@ -172,11 +172,11 @@
|
|
out << " -n, --no-midi-in" + sEot +
|
|
QObject::tr("Don't create a midi driver to read MIDI input events [default = yes]") + sEol;
|
|
out << " -m, --midi-driver=[label]" + sEot +
|
|
- QObject::tr("The name of the midi driver to use [oss,alsa,alsa_seq,...]") + sEol;
|
|
+ QObject::tr("The name of the midi driver to use [jack,oss,...]") + sEol;
|
|
out << " -K, --midi-channels=[num]" + sEot +
|
|
QObject::tr("The number of midi channels [default = 16]") + sEol;
|
|
out << " -a, --audio-driver=[label]" + sEot +
|
|
- QObject::tr("The audio driver [alsa,jack,oss,dsound,...]") + sEol;
|
|
+ QObject::tr("The audio driver [jack,oss,dsound,...]") + sEol;
|
|
out << " -j, --connect-jack-outputs" + sEot +
|
|
QObject::tr("Attempt to connect the jack outputs to the physical ports") + sEol;
|
|
out << " -L, --audio-channels=[num]" + sEot +
|
|
@@ -477,7 +477,7 @@
|
|
pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 512).toInt();
|
|
pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 8).toInt();
|
|
#else
|
|
- pSetup->sMidiDriver = m_settings.value("/MidiDriver", "alsa_seq").toString();
|
|
+ pSetup->sMidiDriver = m_settings.value("/MidiDriver", "jack").toString();
|
|
pSetup->sAudioDriver = m_settings.value("/AudioDriver", "jack").toString();
|
|
pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 64).toInt();
|
|
pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 2).toInt();
|