mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 09:55:31 +00:00
Fixed IsEnabled which had its ending trimmed.
This commit is contained in:
parent
30811cb4ac
commit
5ec74af8a4
|
@ -32,7 +32,7 @@ namespace Bind.Structures
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
static Regex endings = new Regex(@"((([df]|u?[isb])v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
static Regex endings = new Regex(@"((([df]|u?[isb])v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||||
static Regex endingsNotToTrim = new Regex("(ib|[tdrey]s|[eE]n[vd])", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
static Regex endingsNotToTrim = new Regex("(ib|[tdrey]s|[eE]n[vd]|led)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a trailing v to functions matching this regex. Used to differntiate between overloads taking both
|
/// Add a trailing v to functions matching this regex. Used to differntiate between overloads taking both
|
||||||
|
|
Loading…
Reference in a new issue