Always use Invariant shortcuts for ToLower/ToUpper

This commit is contained in:
N00MKRAD
2024-09-03 22:08:38 +02:00
parent c31c76f423
commit 9672c31fba
48 changed files with 139 additions and 235 deletions

View File

@@ -241,7 +241,7 @@ namespace Flowframes
try
{
string[] lines = info.SplitIntoLines();
string lastLine = lines.Last().ToLowerInvariant();
string lastLine = lines.Last().Lower();
return lastLine.Substring(0, lastLine.IndexOf("fps")).GetInt();
}
catch