From 1e862c874cf43334c1c439254036ede1a584b0b8 Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 25 Jun 2003 11:17:56 +0000 Subject: [PATCH] Refer to the docs git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2678 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/util.cpp b/Source/util.cpp index dacc5a82..8e37ee13 100644 --- a/Source/util.cpp +++ b/Source/util.cpp @@ -311,7 +311,7 @@ int generate_unicons_offsets(unsigned char* exeHeader, unsigned char* uninstIcon DWORD dwSize = *(DWORD*)seeker; seeker += sizeof(DWORD); - MY_ASSERT(dwSize != rde->Size, "installer, uninstaller icon size mismatch"); + MY_ASSERT(dwSize != rde->Size, "installer, uninstaller icon size mismatch - see the Icon instruction's documentation for more information"); // Set offset *(DWORD*)seeker = rde->OffsetToData + DWORD(rdRoot) - dwResourceSectionVA - DWORD(exeHeader);