Skip to content

Commit d60678d

Browse files
committed
Fixed: Forced DLL Alignment Breaking for some Wine users
1 parent 420ac8c commit d60678d

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

source/Reloaded.Mod.Launcher/Reloaded.Mod.Launcher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<UseWPF>true</UseWPF>
88
<AssemblyName>Reloaded-II</AssemblyName>
99
<RootNamespace>Reloaded.Mod.Launcher</RootNamespace>
10-
<Version>1.23.4</Version>
10+
<Version>1.23.5</Version>
1111
<Copyright>Sewer56 ~ $([System.DateTime]::UtcNow.ToString("s")) | $(Version)</Copyright>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1313
<ApplicationIcon>appicon.ico</ApplicationIcon>

source/Reloaded.Mod.Loader.Bootstrapper/EntryPointParameter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
/* For C# source, see EntryPoint.cs */
4-
#define CURRENT_VERSION 6
4+
#define CURRENT_VERSION 7
55

66
enum EntryPointFlags : int
77
{

source/Reloaded.Mod.Loader.Bootstrapper/Reloaded.Mod.Bootstrapper.vcxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@
177177
<ProgramDatabaseFile>$(OutDir)\X86\Bootstrapper\$(TargetName).pdb</ProgramDatabaseFile>
178178
<DelayLoadDLLs>%(DelayLoadDLLs)</DelayLoadDLLs>
179179
<AdditionalOptions>/brepro %(AdditionalOptions)</AdditionalOptions>
180-
<SectionAlignment>128</SectionAlignment>
181180
<ModuleDefinitionFile>exports.def</ModuleDefinitionFile>
182181
</Link>
183182
</ItemDefinitionGroup>
@@ -214,7 +213,6 @@
214213
<ProgramDatabaseFile>$(OutDir)\X64\Bootstrapper\$(TargetName).pdb</ProgramDatabaseFile>
215214
<DelayLoadDLLs>%(DelayLoadDLLs)</DelayLoadDLLs>
216215
<AdditionalOptions>/brepro %(AdditionalOptions)</AdditionalOptions>
217-
<SectionAlignment>128</SectionAlignment>
218216
<ModuleDefinitionFile>exports.def</ModuleDefinitionFile>
219217
</Link>
220218
</ItemDefinitionGroup>

source/Reloaded.Mod.Loader/Reloaded.Mod.Loader.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1212
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
1313
<NoWarn>$(NoWarn);NU1605;NU1701</NoWarn>
14-
<Version>1.23.4</Version>
14+
<Version>1.23.5</Version>
1515
<Platforms>x86;x64</Platforms>
1616
<GenerateDepsJson>false</GenerateDepsJson>
1717

source/Reloaded.Mod.Shared/EntryPointParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Also update EntryPointParameter.h in bootstrapper accordingly.
1414
/// <summary>
1515
/// Current version of parameters.
1616
/// </summary>
17-
public const int CurrentVersion = 6;
17+
public const int CurrentVersion = 7;
1818

1919
// Version 1
2020
/// <summary>

0 commit comments

Comments
 (0)