diff --git a/help/audacity.1 b/help/audacity.1 index e4c70000a..e70a7b475 100644 --- a/help/audacity.1 +++ b/help/audacity.1 @@ -109,7 +109,7 @@ environment variable will be searched before anywhere else. The current working directory when Audacity is started. .RE -.I ~/.audacity\-files +.I ~/.audacity-data/Plug-Ins .I /share/audacity .RS diff --git a/src/AudioIO.cpp b/src/AudioIO.cpp index 8faf9a125..4b4f08561 100644 --- a/src/AudioIO.cpp +++ b/src/AudioIO.cpp @@ -2396,10 +2396,9 @@ wxString AudioIO::GetDeviceInfo() } wxString name = DeviceName(info); - wxString hostName = gPrefs->Read(wxT("/AudioIO/Host"), wxT("")); s << wxT("Device ID: ") << j << e; s << wxT("Device name: ") << name << e; - s << wxT("Host name: ") << hostName << e; + s << wxT("Host name: ") << HostName(info) << e; s << wxT("Input channels: ") << info->maxInputChannels << e; s << wxT("Output channels: ") << info->maxOutputChannels << e; s << wxT("Low Input Latency: ") << info->defaultLowInputLatency << e;