mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-22 12:13:03 +00:00
Comply with GBATemp and minor text changes
This commit is contained in:
parent
12f25e0fdb
commit
4c4c6f0fa3
1 changed files with 19 additions and 4 deletions
|
@ -115,12 +115,27 @@ namespace XCI_Explorer
|
||||||
|
|
||||||
if (!File.Exists("keys.txt"))
|
if (!File.Exists("keys.txt"))
|
||||||
{
|
{
|
||||||
MessageBox.Show("keys.txt is missing.");
|
if (MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||||
Environment.Exit(0);
|
{
|
||||||
|
Process process = new Process();
|
||||||
|
process.StartInfo = new ProcessStartInfo
|
||||||
|
{
|
||||||
|
WindowStyle = ProcessWindowStyle.Hidden,
|
||||||
|
FileName = "Get-keys.txt.bat"
|
||||||
|
};
|
||||||
|
process.Start();
|
||||||
|
process.WaitForExit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!File.Exists("keys.txt"))
|
||||||
|
{
|
||||||
|
MessageBox.Show("keys.txt failed to load.\nPlease include keys.txt in this location.");
|
||||||
|
Environment.Exit(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!File.Exists("hactool.exe"))
|
if (!File.Exists("hactool.exe"))
|
||||||
{
|
{
|
||||||
MessageBox.Show("hactool is missing.");
|
MessageBox.Show("hactool.exe is missing.");
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
getKey();
|
getKey();
|
||||||
|
@ -725,7 +740,7 @@ namespace XCI_Explorer
|
||||||
{
|
{
|
||||||
if (Util.checkFile(TB_File.Text))
|
if (Util.checkFile(TB_File.Text))
|
||||||
{
|
{
|
||||||
if (MessageBox.Show("Trim XCI ?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
if (MessageBox.Show("Trim XCI?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||||
{
|
{
|
||||||
if (!TB_ROMExactSize.Text.Equals(TB_ExactUsedSpace.Text))
|
if (!TB_ROMExactSize.Text.Equals(TB_ExactUsedSpace.Text))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue