mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
Indexing at 0 should be used instead of the "Enumerable" extension method "First" (#5354)
This commit is contained in:
parent
79a1314ee4
commit
12c5f6ee89
|
@ -14,7 +14,7 @@ namespace Ryujinx.Ui.LocaleGenerator
|
||||||
|
|
||||||
context.RegisterSourceOutput(contents, (spc, content) =>
|
context.RegisterSourceOutput(contents, (spc, content) =>
|
||||||
{
|
{
|
||||||
var lines = content.Split('\n').Where(x => x.Trim().StartsWith("\"")).Select(x => x.Split(':').First().Trim().Replace("\"", ""));
|
var lines = content.Split('\n').Where(x => x.Trim().StartsWith("\"")).Select(x => x.Split(':')[0].Trim().Replace("\"", ""));
|
||||||
string enumSource = "namespace Ryujinx.Ava.Common.Locale;\n";
|
string enumSource = "namespace Ryujinx.Ava.Common.Locale;\n";
|
||||||
enumSource += "internal enum LocaleKeys\n{\n";
|
enumSource += "internal enum LocaleKeys\n{\n";
|
||||||
foreach (var line in lines)
|
foreach (var line in lines)
|
||||||
|
|
Loading…
Reference in a new issue