From 1df69fd490104924183f1f20e89ba72d392a14d5 Mon Sep 17 00:00:00 2001 From: "wagic.jeck" Date: Sun, 25 Oct 2009 04:33:09 +0000 Subject: [PATCH] Jeck - Batch script to copy resources on PC over to PSP. Does not copy SFX or settings/profiles. --- projects/mtg/tools/Check Resources.bat | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 projects/mtg/tools/Check Resources.bat diff --git a/projects/mtg/tools/Check Resources.bat b/projects/mtg/tools/Check Resources.bat new file mode 100644 index 000000000..ebf96275b --- /dev/null +++ b/projects/mtg/tools/Check Resources.bat @@ -0,0 +1,20 @@ +@SetLocal EnableDelayedExpansion +@echo PSP resource updating script. +@echo This script copies resources from PC to PSP. +@echo It must be run from the tools directory. +@echo. +@echo To avoid prompts, please edit the path variable wthpath in this file. +@echo. +@echo This script does not copy SFX or profiles. +@REM Set the following two lines to the proper paths +@echo. +@echo What is your PSP WTH path (K:/PSP/Game5XX/WTH) +@set /P wthpath=Path: +@echo Copying files to %wthpath% + +xcopy "../bin/res/sets" "%wthpath%/Res/sets" /E /D /Y +xcopy "../bin/res/lang" "%wthpath%/Res/lang" /E /D /Y +xcopy "../bin/res/ai" "%wthpath%/Res/ai" /E /D /Y +xcopy "../bin/res/graphics" "%wthpath%/Res/graphics" /E /D /Y +xcopy "../bin/Res/themes" "%wthpath%/Res/themes" /E /D /Y +pause \ No newline at end of file