Merge pull request #296 from Remnence/patch-1

Patch 1
This commit is contained in:
Steven Smith 2017-02-05 18:17:51 -08:00 committed by GitHub
commit a71759d2df

View File

@ -0,0 +1,11 @@
@ECHO OFF
set /p DSIP="Enter the IP of your 3DS: "
for %%a in (%*) do (
if "%%~xa"==".cia" (
python %~dp0servefiles.py %DSIP% "%%~a"
)
if "%%~xa"=="" (
python %~dp0servefiles.py %DSIP% "%%~a"
)
)
pause