This commit is contained in:
the_fiddler 2006-10-01 10:09:28 +00:00
Родитель 369a2aa021
Коммит c65d759ea1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}
}