mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:05:40 +00:00
Added ordinal comparison to string index search.
This commit is contained in:
parent
760e68ed4e
commit
71c900630f
|
@ -334,7 +334,7 @@ namespace OpenTK.Rewrite
|
|||
// something like "type namespace.class::method(type arg)"
|
||||
var module = il.Body.Method.FullName;
|
||||
module = module.Substring(module.IndexOf(' ') + 1);
|
||||
module = module.Substring(0, module.IndexOf("::"));
|
||||
module = module.Substring(0, module.IndexOf("::", StringComparison.Ordinal));
|
||||
module = module.Substring(0, module.LastIndexOf('.'));
|
||||
|
||||
// Only works for Graphics modules due to hardcoded use of
|
||||
|
|
Loading…
Reference in a new issue