Revert "Change some RString methods to free functions"

This commit is contained in:
teejusb
2025-06-22 23:03:14 -07:00
parent dfe8b29ef5
commit 53dcbed80d
110 changed files with 619 additions and 588 deletions
+1 -1
View File
@@ -976,7 +976,7 @@ ConfOption *ConfOption::Find( RString name )
{
ConfOption *opt = &g_ConfOptions[i];
RString match(opt->name);
if( CompareNoCase(match, name) )
if( match.CompareNoCase(name) )
continue;
return opt;
}