Skip to content
This repository was archived by the owner on Dec 16, 2021. It is now read-only.

Commit 97c4e9d

Browse files
author
Johnathon
committed
Nitpicking about alphabetizing methods, minor OCD thing
Not that much changed, gonna figure out stuff soon I guess.
1 parent aed8ba4 commit 97c4e9d

34 files changed

+6
-20
lines changed

Detour/Detour.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<WarningLevel>Level3</WarningLevel>
5959
<Optimization>Disabled</Optimization>
6060
<PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;DETOUR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
61-
<AdditionalIncludeDirectories>C:\Users\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;%(AdditionalIncludeDirectories);D:\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;C:\Users\joh\Documents\Visual Studio 2017\Project\Wolf\Libraries</AdditionalIncludeDirectories>
61+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);C:\Users\joh\Documents\Visual Studio 2017\Project\Wolf\Libraries</AdditionalIncludeDirectories>
6262
</ClCompile>
6363
<Link>
6464
<SubSystem>Windows</SubSystem>
@@ -75,7 +75,7 @@
7575
<FunctionLevelLinking>true</FunctionLevelLinking>
7676
<IntrinsicFunctions>true</IntrinsicFunctions>
7777
<PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;DETOUR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
78-
<AdditionalIncludeDirectories>D:\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;C:\Users\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
78+
<AdditionalIncludeDirectories>D:\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;C:\Users\Johnathon\Documents\Visual Studio 2017\Projects\Wolf\Libraries;%(AdditionalIncludeDirectories);C:\Users\joh\Documents\Visual Studio 2017\Project\Wolf\Libraries</AdditionalIncludeDirectories>
7979
</ClCompile>
8080
<Link>
8181
<SubSystem>Windows</SubSystem>

Elroy/Form1.cs

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ namespace Elroy
77
{
88
public partial class Form1 : Form
99
{
10-
private static string SaveFile;
11-
1210
public Form1()
1311
{
1412
InitializeComponent();
@@ -19,6 +17,7 @@ private void exitToolStripMenuItem_Click(object sender, EventArgs e)
1917
Application.Exit();
2018
}
2119

20+
private static string SaveFile;
2221
private void opemToolStripMenuItem_Click(object sender, EventArgs e)
2322
{
2423
using (var OFD = new OpenFileDialog())
@@ -30,12 +29,13 @@ private void opemToolStripMenuItem_Click(object sender, EventArgs e)
3029
if (OFD.ShowDialog() != DialogResult.OK)
3130
return;
3231

32+
3333
//Start Parsing Save File Populating Items.
3434
//Check If Save File.
3535
using (var Reader = new BinaryReader(File.Open(OFD.FileName, FileMode.Open, FileAccess.Read)))
3636
{
3737
var SaveHeader = Reader.ReadBytes(10);
38-
var KnownHeader = new byte[] {0xF9, 0x29, 0xCE, 0x54, 0x02, 0x4D, 0x71, 0x04, 0x4D, 0x71};
38+
var KnownHeader = new byte[] { 0xF9, 0x29, 0xCE, 0x54, 0x02, 0x4D, 0x71, 0x04, 0x4D, 0x71 };
3939

4040
if (!KnownHeader.SequenceEqual(SaveHeader))
4141
{
@@ -47,15 +47,11 @@ private void opemToolStripMenuItem_Click(object sender, EventArgs e)
4747
tabControl1.Enabled = true;
4848
SaveFile = OFD.FileName;
4949
}
50-
51-
SaveStatManager.UpdateSaveStatFromSave(SaveFile);
52-
StoryManager.UpdateCampaignFromSave(ref tabPage3, SaveFile);
5350
}
5451
}
55-
5652
private void DeckEditButton_Click(object Sender, EventArgs Args)
5753
{
58-
var SenderButton = (Button) Sender;
54+
var SenderButton = (Button)Sender;
5955
var Manager = new DeckManager(SenderButton.Name, SaveFile);
6056
Manager.ShowDialog();
6157
}
@@ -64,17 +60,7 @@ private void SaveToolStripMenuItem_Click(object Sender, EventArgs Args)
6460
{
6561
if (!File.Exists(SaveFile)) return;
6662
var Save = new GameSaveData(SaveFile);
67-
68-
SaveStatManager.WriteSaveStatToSave(SaveFile);
69-
StoryManager.WriteCampaignToSave(ref tabPage3, SaveFile);
70-
7163
Save.FixGameSaveSignatureOnDisk();
7264
}
73-
74-
75-
private void button34_Click(object sender, EventArgs e)
76-
{
77-
MessageBox.Show("This Will Unlock ALL Cards. You Need To Own DLC Cards Before You Can Use Them!", "Unlock ALL Cards!", MessageBoxButtons.OK, MessageBoxIcon.Information);
78-
}
7965
}
8066
}

bin/Debug/Abaki.exe

0 Bytes
Binary file not shown.

bin/Debug/Celtic Guardian.dll

0 Bytes
Binary file not shown.

bin/Debug/Cyclone.exe

0 Bytes
Binary file not shown.

bin/Debug/Elroy.exe

-512 Bytes
Binary file not shown.

bin/Debug/Embargo.exe

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

bin/Debug/Examples/Detour.dll

-512 Bytes
Binary file not shown.

bin/Debug/Examples/MessageBox.dll

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)