summaryrefslogtreecommitdiffhomepage
path: root/MIDIPlayer.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-19 16:22:55 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-19 16:22:55 +0100
commit926be3b8db12d9105a49f8a9a5f695f12d7aea12 (patch)
treeae6dd7c14e880833790f68e525e9ca0fd03f4ea0 /MIDIPlayer.cpp
parent321eaa65109a6ab18344901dfc4dd8cc4b82367d (diff)
Debian package
Diffstat (limited to 'MIDIPlayer.cpp')
-rw-r--r--MIDIPlayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/MIDIPlayer.cpp b/MIDIPlayer.cpp
index 061b8f6..e160d33 100644
--- a/MIDIPlayer.cpp
+++ b/MIDIPlayer.cpp
@@ -44,7 +44,7 @@ void MIDIPlayer::start()
if (m_child.valid() && m_child.running()) {
stop();
} else {
- m_child = bp::child(fmt::format("/home/ernie/code/midiplay/aplaymidi-mp -c -p{} \"{}\"", m_client, m_file).c_str());//, bp::std_out > bp::null);
+ m_child = bp::child(fmt::format("aplaymidi-mp -c -p{} \"{}\"", m_client, m_file).c_str());//, bp::std_out > bp::null);
if (!m_child.valid() || !m_child.running()) {
throw std::runtime_error("aplaymidi not started");
}