summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
Diffstat (limited to 'os')
-rw-r--r--os/windows/installer/install.nsi8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi
index f4a3ec955..eda407ff7 100644
--- a/os/windows/installer/install.nsi
+++ b/os/windows/installer/install.nsi
@@ -281,17 +281,17 @@ SectionEnd
Section "Download OpenMSX (free music set)" Section5
SetOverwrite try
- NSISdl::download "http://binaries.openttd.org/installer/openmsx-${OPENMSX_BASE_VERSION}.7z" "$INSTDIR\gm\openmsx.7z"
+ NSISdl::download "http://binaries.openttd.org/installer/openmsx-${OPENMSX_BASE_VERSION}.7z" "$INSTDIR\baseset\openmsx.7z"
Pop $R0 ;Get the return value
StrCmp $R0 "success" +3
MessageBox MB_OK "Downloading of OpenMSX failed"
Goto Done
; Let's extract the files
- SetOutPath "$INSTDIR\gm\"
- NSIS7z::Extract "$INSTDIR\gm\openmsx.7z"
+ SetOutPath "$INSTDIR\baseset\"
+ NSIS7z::Extract "$INSTDIR\baseset\openmsx.7z"
- Delete "$INSTDIR\gm\openmsx.7z"
+ Delete "$INSTDIR\baseset\openmsx.7z"
SetOutPath "$INSTDIR\"
Done: