Skip to content

Commit

Permalink
Fix Heat Harvesting for x64 Dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Ko authored and Nico-Ko committed Dec 3, 2024
1 parent f440fb3 commit 511b224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/heat/UtilFinalizeHarvesterMutator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ private void MutateComponents()
processed = true;
}
}
else if (5 == parts.Length && String.Equals("win32", parts[4], StringComparison.OrdinalIgnoreCase))
else if (5 == parts.Length && (String.Equals("win32", parts[4], StringComparison.OrdinalIgnoreCase) || String.Equals("win64", parts[4], StringComparison.OrdinalIgnoreCase)))
{
typeLib.Language = Convert.ToInt32(parts[3], CultureInfo.InvariantCulture);

Expand Down

0 comments on commit 511b224

Please sign in to comment.