Allow exact function name overrides for extension functions.

This commit is contained in:
the_fiddler 2010-11-21 16:03:37 +00:00
parent ef97233198
commit a55102ef2f

View file

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