Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions SwitchSDTool/Configuration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
Expand All @@ -22,7 +22,7 @@ public class ConfigurationData
public string SystemPath = "SYSTEM"; //"A" + Path.VolumeSeparatorChar + Path.DirectorySeparatorChar;

// ReSharper disable once InconsistentNaming
public string ETicketRSAKEK = "Replace me with the actual eticket_rsa_kek.";
public string ETicketRSAKEK = "Replace me with the actual eticket_rsa_kek or (mariko) eticket_rsa_kek_personalized.";
public List<Languages> LanguageOrder = new List<Languages>();
public GameIconSize GameIconSize = GameIconSize.Small;
public Size MainFormSize = new Size(932, 595);
Expand Down Expand Up @@ -51,8 +51,8 @@ public enum Languages
Portuguese,
Russian,
Korean,
Taiwanese,
Chinese
[Description("Traditional Chinese")] TraditionalChinese,
[Description("Simplified Chinese")] SimplifiedChinese
};

public enum GameIconSize
Expand Down Expand Up @@ -132,4 +132,4 @@ public static string[] GetDecryptedNCAFiles
}
}
}
}
}