Make blank audio actually blank

Originally committed to SVN as r4912.
This commit is contained in:
Thomas Goyne 2010-12-08 08:09:49 +00:00
parent a6236fa20c
commit 27cb511556
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ void AudioController::OpenAudio(const wxString &url)
* in every channel even if one would be LFE.
* "ln", length of signal in samples. ln/sr gives signal length in seconds.
*/
provider = new DummyAudioProvider(5*30*60*1000, true);
provider = new DummyAudioProvider(5*30*60*1000, path_part.StartsWith(L"noise"));
}
else if (url.StartsWith(_T("video-audio:"), &path_part))
{