Skip to content

Commit

Permalink
Fix couple of debug left overs in loader that caused issues for ds3.
Browse files Browse the repository at this point in the history
  • Loading branch information
TLeonardUK committed Jan 7, 2024
1 parent 19405a5 commit fdb3c3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Source/Loader/Config/BuildConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ public static class BuildConfig
}
},
{
ExeUtils.MakeSimpleExeHash("Dark Souls III - 1.15.1.0", 88982096),
ExeUtils.MakeSimpleExeHash("1.15.1.0", 88982096),
new DarkSoulsLoadConfig
{
VersionName = "1.15.1.0 (Steam)",
VersionName = "Dark Souls III - 1.15.1.0 (Steam)",
ServerInfoAddress = 0x55A3F15,
UseInjector = true,
UsesASLR = true,
Expand All @@ -74,10 +74,10 @@ public static class BuildConfig
}
},
{
ExeUtils.MakeSimpleExeHash("Dark Souls III - 1.15.2.0", 88960032),
ExeUtils.MakeSimpleExeHash("1.15.2.0", 88960032),
new DarkSoulsLoadConfig
{
VersionName = "1.15.2.0 (Steam)",
VersionName = "Dark Souls III - 1.15.2.0 (Steam)",
ServerInfoAddress = 0x0,
UseInjector = true,
UsesASLR = true,
Expand Down
2 changes: 1 addition & 1 deletion Source/Loader/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ private void OnLoaded(object sender, EventArgs e)
ServerConfigList.FromJson(ProgramSettings.Default.server_config_json, out ServerList);
IgnoreInputChanges = false;

ProgramSettings.Default.Reset();
#if false//DEBUG
ProgramSettings.Default.Reset();
ProgramSettings.Default.master_server_url = "http://127.0.0.1:50020";
#endif

Expand Down

0 comments on commit fdb3c3b

Please sign in to comment.