From fe91ae4b18d1f3ce78c042193c81f950515a2ac7 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Sat, 25 Jan 2014 09:55:45 -0600 Subject: [PATCH] RageSoundDriver_JACK: Explicitly hint that we would rather fail than start a new jackd instance. --- src/arch/Sound/RageSoundDriver_JACK.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/Sound/RageSoundDriver_JACK.cpp b/src/arch/Sound/RageSoundDriver_JACK.cpp index 11a7f5e111..d4ff7dca8e 100644 --- a/src/arch/Sound/RageSoundDriver_JACK.cpp +++ b/src/arch/Sound/RageSoundDriver_JACK.cpp @@ -34,7 +34,7 @@ RString RageSoundDriver_JACK::Init() RString error; // Open JACK client and call it "StepMania" or whatever - client = jack_client_open(PRODUCT_FAMILY, JackNullOption, &status); + client = jack_client_open(PRODUCT_FAMILY, JackNoStartServer, &status); if (client == NULL) return "Couldn't connect to JACK server";