mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-30 11:16:56 +00:00
Fixed extension loading.
This commit is contained in:
parent
f154fb3ba9
commit
0209dd7ac4
|
@ -149,7 +149,7 @@ namespace OpenTK.Platform
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
FieldInfo f = type.GetField(extension, BindingFlags.Static | BindingFlags.NonPublic);
|
FieldInfo f = extensions_class.GetField(extension, BindingFlags.Static | BindingFlags.NonPublic);
|
||||||
if (f == null)
|
if (f == null)
|
||||||
{
|
{
|
||||||
Debug.Print("Extension \"", extension, "\" not found in ", type.ToString());
|
Debug.Print("Extension \"", extension, "\" not found in ", type.ToString());
|
||||||
|
|
Loading…
Reference in a new issue