commit 2e1d8a32325dc273a9099d3870fa1c194629ca1e
parent bda89cfdd70ef389e10871a12e8cd4149e306e2d
Author: Christopher A. Oliver <[email protected]>
Date: Sun, 21 Feb 2016 19:37:38 -0500
Have -N affect ALSA MIDI port name.
Diffstat:
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/Nio/AlsaEngine.cpp b/src/Nio/AlsaEngine.cpp
@@ -28,6 +28,7 @@ using namespace std;
#include "../Misc/Config.h"
#include "InMgr.h"
#include "AlsaEngine.h"
+#include "Nio.h"
AlsaEngine::AlsaEngine(const SYNTH_T &synth)
:AudioOut(synth)
@@ -212,7 +213,13 @@ bool AlsaEngine::openMidi()
if(snd_seq_open(&midi.handle, "default", SND_SEQ_OPEN_INPUT, 0) != 0)
return false;
- snd_seq_set_client_name(midi.handle, "ZynAddSubFX");
+ string clientname = "ZynAddSubFX";
+ string postfix = Nio::getPostfix();
+ if (!postfix.empty())
+ clientname += "_" + postfix;
+ if(Nio::pidInClientName)
+ clientname += "_" + os_pid_as_padded_string();
+ snd_seq_set_client_name(midi.handle, clientname.c_str());
alsaport = snd_seq_create_simple_port(
midi.handle,