diff --git a/stepmania/src/ProductInfo.inc b/stepmania/src/ProductInfo.inc index 7f82da8928..2a7b878433 100644 --- a/stepmania/src/ProductInfo.inc +++ b/stepmania/src/ProductInfo.inc @@ -22,3 +22,4 @@ ;!define DIRECTX_81_REDIST_PRESENT ;!define MAKE_UPDATES_SHORTCUT !define CRC_CHECK +!define COMPRESS \ No newline at end of file diff --git a/stepmania/stepmania.nsi b/stepmania/stepmania.nsi index d01861489f..ed4ed46517 100644 --- a/stepmania/stepmania.nsi +++ b/stepmania/stepmania.nsi @@ -28,7 +28,11 @@ UninstallCaption "${PRODUCT_DISPLAY}" ; Some default compiler settings (uncomment and change at will): - SetCompress auto ; (can be off or force) +!ifdef COMPRESS + SetCompress auto +!else + SetCompress off +!endif SetDatablockOptimize on ; (can be off) !ifdef CRC_CHECK CRCCheck on @@ -242,8 +246,8 @@ Section "Main Section" SecMain ; Do this copy before anything else. It's the most likely to fail. ; Possible failure reasons are: scratched CD, user tried to copy the installer but forgot the pcks. CreateDirectory $INSTDIR\pcks - CopyFiles /SILENT "$EXEDIR\${PRODUCT_ID}.app\Contents\Resources\pcks\*.idx" $INSTDIR\pcks 1 - CopyFiles /SILENT "$EXEDIR\${PRODUCT_ID}.app\Contents\Resources\pcks\*.pck" $INSTDIR\pcks 650000 ; assume a CD full of data + CopyFiles "$EXEDIR\${PRODUCT_ID}\${PRODUCT_ID}.app\Contents\Resources\pcks\*.idx" $INSTDIR\pcks 1 + CopyFiles "$EXEDIR\${PRODUCT_ID}\${PRODUCT_ID}.app\Contents\Resources\pcks\*.pck" $INSTDIR\pcks 650000 ; assume a CD full of data IfErrors do_error_pck do_no_error_pck do_error_pck: MessageBox MB_OK|MB_ICONSTOP "$(TEXT_IO_FATAL_ERROR_COPYING_PCK)"