Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Faraone <lfaraone@stone.(none)>2009-03-21 15:21:03 (GMT)
committer Luke Faraone <lfaraone@stone.(none)>2009-03-21 15:21:03 (GMT)
commit24e5329496ff6bab990a39817ce65b1d4e6d81a8 (patch)
tree4c31eb873bd78ed65f398baef75f962e856908ad
parenta7834bab6a1382cc1ab8171d1b79c1c2bb195534 (diff)
Fixed syntax errors so the script builds now.HEADmaster
-rw-r--r--soas-emu.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/soas-emu.nsi b/soas-emu.nsi
index 2d08bc1..41315fb 100644
--- a/soas-emu.nsi
+++ b/soas-emu.nsi
@@ -29,7 +29,6 @@
;--------------------------------
; Macros
-""""
Function GetVBX
MessageBox MB_OK "You selected to install VirtualBox, \
it will now be downloaded and installed."
@@ -82,6 +81,7 @@ Section "Sugar disk image"
;ADD YOUR OWN FILES HERE...
File "soas.img"
+ AddSize 300000 ; more or less
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
@@ -90,7 +90,7 @@ SectionEnd
Section "VirtualBox Virtual Machine"
AddSize 75000
- DetectVBX
+ Call DetectVBX
SectionEnd
;--------------------------------