This commit is contained in:
parent
369a2aa021
commit
c65d759ea1
1 changed files with 2 additions and 2 deletions
|
@ -33,11 +33,11 @@ namespace OpenTK.OpenGL.Platform
|
|||
error_code = Marshal.GetLastWin32Error();
|
||||
if (error_code != 0)
|
||||
{
|
||||
Console.WriteLine("LoadLibrary({0}) set error code: {1}. Will not load extensions.", _dll_name, error_code);
|
||||
System.Diagnostics.Debug.WriteLine("LoadLibrary({0}) set error code: {1}. Will not load extensions.", _dll_name, error_code);
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Loaded dll: {0}", _dll_name);
|
||||
System.Diagnostics.Debug.WriteLine("Loaded dll: {0}", _dll_name);
|
||||
load_extensions = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue