Windows 95 (OSR2)/98/ME no longer see drive free space capped to 2GB.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3507 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
eccles 2004-03-06 12:31:26 +00:00
parent e90fe421d6
commit ca9582c925
5 changed files with 54 additions and 39 deletions

View file

@ -4,14 +4,14 @@
// generic startup strings (these will never be overridable)
#ifdef NSIS_CONFIG_CRC_SUPPORT
#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\r\n" \
"This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n" \
"You may want to contact the author of this installer to obtain a new copy.\r\n\r\n" \
"It may be possible to skip this check using the /NCRC command line switch\r\n" \
#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\n" \
"This could be the result of a damaged disk, a failed download or a virus.\n\n" \
"You may want to contact the author of this installer to obtain a new copy.\n\n" \
"It may be possible to skip this check using the /NCRC command line switch\n" \
"(NOT RECOMMENDED)."
#else
#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\r\n" \
"This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n" \
#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\n" \
"This could be the result of a damaged disk, a failed download or a virus.\n\n" \
"You may want to contact the author of this installer to obtain a new copy."
#endif