mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-08 10:10:00 +00:00
* EnumProcessor.cs:
* FuncProcessor.cs: Corrected the XPath for signature overrides.
This commit is contained in:
parent
1c8a0b2bda
commit
029957c03a
|
@ -38,7 +38,7 @@ namespace Bind
|
|||
{
|
||||
class EnumProcessor
|
||||
{
|
||||
const string Path = "/overrides/replace/enum[@name='{0}']";
|
||||
const string Path = "/signatures/replace/enum[@name='{0}']";
|
||||
XPathDocument Overrides { get; set; }
|
||||
|
||||
public EnumProcessor(XPathDocument overrides)
|
||||
|
|
|
@ -38,7 +38,7 @@ namespace Bind
|
|||
{
|
||||
class FuncProcessor
|
||||
{
|
||||
const string Path = "/overrides/replace/function[@name='{0}' and @extension='{1}']";
|
||||
const string Path = "/signatures/replace/function[@name='{0}' and @extension='{1}']";
|
||||
static readonly Regex Endings =
|
||||
new Regex(@"((((d|f|fi)|u?[isb])_?v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||
static readonly Regex EndingsNotToTrim =
|
||||
|
|
Loading…
Reference in a new issue