Fixed a bug that caused the second plug-in DLL not to get extracted

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@677 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-09 18:59:13 +00:00
parent 3e33df5e0c
commit bc6494155b
5 changed files with 36 additions and 33 deletions

View file

@ -416,7 +416,7 @@ int GetCompressedDataFromDataBlock(int offset, HANDLE hFileOut);
int GetCompressedDataFromDataBlockToMemory(int offset, char *out, int out_len);
// $0..$9, $INSTDIR, etc are encoded as ASCII bytes starting from this value.
#define VAR_CODES_START (256 - 36)
#define VAR_CODES_START (256 - 37)
#endif //_FILEFORM_H_