From c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Thu, 30 Dec 2021 15:11:35 -0600 Subject: Revert .wixburn version since the format didn't change. --- src/burn/stub/StubSection.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/burn/stub/StubSection.cpp') diff --git a/src/burn/stub/StubSection.cpp b/src/burn/stub/StubSection.cpp index 2191a138..62d3e91e 100644 --- a/src/burn/stub/StubSection.cpp +++ b/src/burn/stub/StubSection.cpp @@ -2,12 +2,11 @@ #include "precomp.h" -#pragma section(".wixburn",read) +#pragma section(BURN_SECTION_NAME,read) -// If these defaults ever change, be sure to update constants in burn\engine\section.cpp as well. -#pragma data_seg(push, ".wixburn") -static DWORD dwMagic = 0x00f14300; -static DWORD dwVersion = 0x00000003; +#pragma data_seg(push, BURN_SECTION_NAME) +static DWORD dwMagic = BURN_SECTION_MAGIC; +static DWORD dwVersion = BURN_SECTION_VERSION; static GUID guidBundleId = { }; -- cgit v1.2.3-55-g6feb