Allow exact function name overrides for extension functions.
This commit is contained in:
parent
ef97233198
commit
a55102ef2f
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ namespace Bind
|
|||
|
||||
var function_override =
|
||||
nav.SelectSingleNode(String.Format(Path, name, ext)) ??
|
||||
nav.SelectSingleNode(String.Format(Path, d.Name, ext));
|
||||
nav.SelectSingleNode(String.Format(Path, d.Name, ext)) ??
|
||||
nav.SelectSingleNode(String.Format(Path, Utilities.StripGL2Extension(d.Name), ext));
|
||||
return function_override;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue