Debug.WriteLine(object, string) does not work as intended (the first parameter defines the category). Use Debug.Print instead.
This commit is contained in:
parent
887766a371
commit
ef48c42807
1 changed files with 1 additions and 1 deletions
|
@ -1221,7 +1221,7 @@ namespace OpenTK.Audio.OpenAL
|
|||
|
||||
if (!AudioContext.CurrentContext.SupportsExtension("ALC_EXT_EFX"))
|
||||
{
|
||||
Debug.WriteLine("EFX Extension (ALC_EXT_EFX) is not supported(AudioContext: {0}).", AudioContext.CurrentContext.ToString());
|
||||
Debug.Print("EFX Extension (ALC_EXT_EFX) is not supported(AudioContext: {0}).", AudioContext.CurrentContext.ToString());
|
||||
return;
|
||||
}
|
||||
// Console.WriteLine("ALC_EXT_EFX found. Efx can be used.");
|
||||
|
|
Loading…
Reference in a new issue