Fixed list length search

This commit is contained in:
mm00
2025-03-04 18:03:40 +01:00
parent 0dccefb7e4
commit b100dc8020
2 changed files with 7 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ namespace CodeGenerator {
public static class StrExt {
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string ParseFName(this string str) {
str = str.Replace("*", "ptr_");
str = str.Replace("*", "");
return str;
}