1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Move StrLogicalCmp, SafeStrCpy, SafeStrCat to String.hpp

This commit is contained in:
Aaron van Geffen
2024-12-11 16:58:56 +01:00
parent ed6611219d
commit 5442b20a7a
21 changed files with 184 additions and 173 deletions

View File

@@ -281,7 +281,7 @@ private:
{
return a.RideType < b.RideType;
}
return StrLogicalCmp(a.Name.c_str(), b.Name.c_str()) < 0;
return String::StrLogicalCmp(a.Name.c_str(), b.Name.c_str()) < 0;
});
}