mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 06:05:33 +00:00
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
|
@ -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