diff options
author | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-19 17:18:42 +0000 |
---|---|---|
committer | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-19 17:18:42 +0000 |
commit | 51ed8fe6f2ea9892e905e81cf5bad3960537eb40 (patch) | |
tree | a4dcb099343762dcb7bd7988f73de68c1959d3a5 /Installer/u3portable/Host | |
download | usdx-51ed8fe6f2ea9892e905e81cf5bad3960537eb40.tar.gz usdx-51ed8fe6f2ea9892e905e81cf5bad3960537eb40.tar.xz usdx-51ed8fe6f2ea9892e905e81cf5bad3960537eb40.zip |
Challenge MOD r7 alpha based on Ultrastar Deluxe v1.0.1a
for changes read Changelog.txt in folder Game
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1 Challenge MOD@2107 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Installer/u3portable/Host')
-rw-r--r-- | Installer/u3portable/Host/U3.lnk | bin | 0 -> 1165 bytes | |||
-rw-r--r-- | Installer/u3portable/Host/appstop.exe | bin | 0 -> 24576 bytes | |||
-rw-r--r-- | Installer/u3portable/Host/start.bat | 21 |
3 files changed, 21 insertions, 0 deletions
diff --git a/Installer/u3portable/Host/U3.lnk b/Installer/u3portable/Host/U3.lnk Binary files differnew file mode 100644 index 00000000..45f0a494 --- /dev/null +++ b/Installer/u3portable/Host/U3.lnk diff --git a/Installer/u3portable/Host/appstop.exe b/Installer/u3portable/Host/appstop.exe Binary files differnew file mode 100644 index 00000000..7bb115f2 --- /dev/null +++ b/Installer/u3portable/Host/appstop.exe diff --git a/Installer/u3portable/Host/start.bat b/Installer/u3portable/Host/start.bat new file mode 100644 index 00000000..a50814d9 --- /dev/null +++ b/Installer/u3portable/Host/start.bat @@ -0,0 +1,21 @@ +@echo off
+
+SET FILE=%U3_DEVICE_PATH%\System\Apps\0B458BEB-A9BB-4E93-B48F-F1EBA58D05BD\Data\config.ini
+
+for /F "Tokens=*" %%i in (%FILE%) do Set Var=%%i
+
+type %FILE% | find "[Path]"
+if errorlevel 1 goto write
+if errorlevel 0 goto start
+
+:write
+
+ECHO. >> %FILE%
+ECHO [Path] >> %FILE%
+ECHO Songs=%U3_DEVICE_PATH%\System\Apps\0B458BEB-A9BB-4E93-B48F-F1EBA58D05BD\Data\Songs >> %FILE%
+
+goto start
+
+:start
+
+start U3.lnk
|