diff options
author | rubidium <rubidium@openttd.org> | 2009-08-09 19:50:44 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-09 19:50:44 +0000 |
commit | 9ee2a66c8620d2f47c0d7792847c90146dfc4f8e (patch) | |
tree | dae5e6c7eac84bc443fc16ebb012bb7697923649 /os/win32 | |
parent | 35d5a197d6f93e05eb358ed0a30db9ab2645911b (diff) | |
download | openttd-9ee2a66c8620d2f47c0d7792847c90146dfc4f8e.tar.xz |
(svn r17139) -Change: add the concept of sound sets
Diffstat (limited to 'os/win32')
-rw-r--r-- | os/win32/installer/install.nsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index 6de16a16e..893b3189f 100644 --- a/os/win32/installer/install.nsi +++ b/os/win32/installer/install.nsi @@ -111,6 +111,7 @@ Section "!OpenTTD" Section1 SetOutPath "$INSTDIR\data\" File ${PATH_ROOT}bin\data\*.grf File ${PATH_ROOT}bin\data\*.obg + File ${PATH_ROOT}bin\data\*.obs File ${PATH_ROOT}bin\data\opntitle.dat ; Copy the scripts @@ -134,6 +135,7 @@ Section "!OpenTTD" Section1 Delete "$INSTDIR\*.lng" Delete "$INSTDIR\*.grf" Delete "$INSTDIR\*.obg" + Delete "$INSTDIR\*.obs" Delete "$INSTDIR\sample.cat" Delete "$INSTDIR\ttd.exe" @@ -272,6 +274,8 @@ Section "Uninstall" Delete "$INSTDIR\data\orig_win.obg" Delete "$INSTDIR\data\orig_dos.obg" Delete "$INSTDIR\data\orig_dos_de.obg" + Delete "$INSTDIR\data\orig_win.obs" + Delete "$INSTDIR\data\orig_dos.obs" Delete "$INSTDIR\data\sample.cat" ; Windows Data files |