refs #507, adjustments for launcher

* renamed GUI enum to reflect where audio runs
* removed assumpted position, this is no longer possible as launcher is independet application
This commit is contained in:
Klaus Basan
2015-11-12 02:34:37 +01:00
committed by Mathew Sutcliffe
parent 30e6831bf8
commit 746985fa3c
6 changed files with 12 additions and 37 deletions

View File

@@ -130,13 +130,13 @@ int main(int argc, char *argv[])
BlackCore::CRuntimeConfig runtimeConfig;
switch (coreMode)
{
case GuiModes::CoreExternal:
case GuiModes::CoreExternalCoreAudio:
runtimeConfig = CRuntimeConfig::remote(dBusAddress);
break;
case GuiModes::CoreInGuiProcess:
runtimeConfig = CRuntimeConfig::local(dBusAddress);
break;
case GuiModes::CoreExternalAudioLocal:
case GuiModes::CoreExternalAudioGui:
runtimeConfig = CRuntimeConfig::remoteLocalAudio(dBusAddress);
break;
}