Module is called Tsunami.Bindings.Gl now; LoadExtension needs to look

for that.  Oops.

svn path=/trunk/tsunami-bindings/; revision=24760
This commit is contained in:
Vladimir Vukicevic 2004-03-30 02:41:43 +00:00
Родитель 45309a5e44
Коммит ea5f650ff9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -71,13 +71,13 @@ namespace Tsunami.Bindings {
Type glt = null; Type glt = null;
Assembly [] asss = AppDomain.CurrentDomain.GetAssemblies(); Assembly [] asss = AppDomain.CurrentDomain.GetAssemblies();
foreach (Assembly a in asss) { foreach (Assembly a in asss) {
glt = a.GetType("Tsunami.Gl"); glt = a.GetType("Tsunami.Bindings.Gl");
if (glt != null) if (glt != null)
break; break;
} }
if (glt == null) { if (glt == null) {
Console.WriteLine ("Couldn't find Tsunami.Gl assembly in current AppDomain!"); Console.WriteLine ("Couldn't find Tsunami.Bindings.Gl assembly in current AppDomain!");
return false; return false;
} }