From 9e2e5ed95e619b8d04a0cc47ddee634b4bcdb5cb Mon Sep 17 00:00:00 2001 From: Ds886 Date: Sun, 5 Dec 2021 21:45:38 +0200 Subject: [PATCH 1/3] Changes the download link to gitgub --- SMT1_create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMT1_create.sh b/SMT1_create.sh index e3766d1..0a747ed 100755 --- a/SMT1_create.sh +++ b/SMT1_create.sh @@ -35,7 +35,7 @@ then then echo 'Downloading multiPatch' downloadedZip='./bin/multiPatch.zip' - curl 'https://projects.sappharad.com/tools/multiPatch171_cmd.zip' -o $downloadedZip + curl -L 'https://github.com/Sappharad/MultiPatch/releases/download/2.0/multipatch20_cmd.zip' -o $downloadedZip echo "Decompressing multiPatch" unzip $downloadedZip -d "bin/" From e523e59cff26b4edfdb982fdb7ab6beeaff5a053 Mon Sep 17 00:00:00 2001 From: Ds886 Date: Sun, 5 Dec 2021 22:42:32 +0200 Subject: [PATCH 2/3] SMT1_create.bat --- SMT1_create.bat | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/SMT1_create.bat b/SMT1_create.bat index 5318a44..f3b3a43 100644 --- a/SMT1_create.bat +++ b/SMT1_create.bat @@ -2,11 +2,24 @@ SET orig=%1 SET ios=%2 +IF NOT DEFINED orig ( +ECHO GBA rom not provide +CALL :printInstruction +EXIT /B +) + +IF NOT DEFINED ios ( +ECHO GBA rom not provide +CALL :printInstruction +EXIT /B +) + ECHO Recived values: ECHO Orginal GBA ROM: %orig% ECHO Orginal iOS ROM: %ios% + ECHO Testing accessibility to Original file IF NOT EXIST %orig% ( ECHO File not found From 74f84a4a013e879e11c1bc82ec0b8b4d7775b439 Mon Sep 17 00:00:00 2001 From: Ds886 Date: Sun, 5 Dec 2021 23:26:34 +0200 Subject: [PATCH 3/3] fixes copy-paste type --- SMT1_create.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMT1_create.bat b/SMT1_create.bat index f3b3a43..256503f 100644 --- a/SMT1_create.bat +++ b/SMT1_create.bat @@ -9,7 +9,7 @@ EXIT /B ) IF NOT DEFINED ios ( -ECHO GBA rom not provide +ECHO iOS rom not provide CALL :printInstruction EXIT /B )