13
0

add envy24 control app name

This commit is contained in:
Paul Davis 2013-09-09 17:10:33 -04:00
parent ecfeeda4b8
commit f06bab1fa3

View File

@ -959,23 +959,18 @@ JACKAudioBackend::control_app_name () const
{
string appname;
if (_target_device.empty()) {
if (_target_driver.empty() || _target_device.empty()) {
return appname;
}
#if defined (__linux)
/* Linux potential control apps */
if (_target_driver == "alsa") {
if (_target_device == "Hammerfall DSP") {
appname = "hdspconf";
if (_target_device == "Hammerfall DSP") {
appname = "hdspconf";
} else if (_target_device == "M Audio Delta 1010") {
appname = "mudita";
}
}
#else
#if defined (__APPLE__)
/* OS X potential control apps */
#else
/* Windows potential control apps */
#endif
#endif
return appname;
}