* Added more Dink media, trying to get the html5 build to work "out of the box". Need to run media/update_media.bat to create the audio/interface dirs in bin!

git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1606 353e56fe-9613-0410-8469-b96ad8e6f29c
This commit is contained in:
seth 2018-04-30 23:47:25 +00:00
parent a3aece1f5d
commit 8e575535ed
260 changed files with 2304 additions and 0 deletions

14
media/LowerCase.bat Normal file
View file

@ -0,0 +1,14 @@
REM From http://windowsitpro.com/article/articleid/81612/jsi-tip-8379-how-do-i-convert-a-file-name-to-lowercase.html
@echo off
if {%1}=={} @echo Syntax: LwrCase FullyQualifiedFileName&goto :EOF
if not exist %1 @echo LwrCase - %1 NOT found.&goto :EOF
setlocal
for /f "Tokens=*" %%a in ('@echo %~a1') do (
set file=%%a
)
if /i "%file:~0,1%" EQU "d" @echo LwrCase - %1 is NOT a file.&endlocal&goto :EOF
for /f "Tokens=*" %%f in ('dir %1 /L /b /a /a-d') do (
Rename %1 "%%f"
)
endlocal