mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-02 19:00:21 +00:00
Fixed extension loading.
This commit is contained in:
parent
d129fc26d9
commit
3e309affe8
|
@ -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