mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
extras folder
This commit is contained in:
parent
a0932d3f4a
commit
371335d017
41 changed files with 388 additions and 61 deletions
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 4 (USA) (v1.00) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
27
Data/Extras/Mario Party 4 (v1.00 to v1.01)/patch.sh
Normal file
27
Data/Extras/Mario Party 4 (v1.00 to v1.01)/patch.sh
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 4 (USA) (v1.01).iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
1
Data/Extras/Mario Party 4 (v1.00 to v1.01)/readme.txt
Normal file
1
Data/Extras/Mario Party 4 (v1.00 to v1.01)/readme.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Place the Mario Party 4 (USA) (v1.00) ISO in the script's directory and run the patch script to patch it.
|
BIN
Data/Extras/Mario Party 4 (v1.00 to v1.01)/xdelta3
Executable file
BIN
Data/Extras/Mario Party 4 (v1.00 to v1.01)/xdelta3
Executable file
Binary file not shown.
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 4 (USA) (v1.01) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 4 (USA) [Widescreen].iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1 +1 @@
|
||||||
Drag a Mario Party 4 (USA) (v1.01) ISO onto the .BAT file to patch it.
|
Place the Mario Party 4 (USA) (v1.01) ISO in the script's directory and run the patch script to patch it.
|
BIN
Data/Extras/Mario Party 4 Widescreen Patch (for v1.01)/xdelta3
Executable file
BIN
Data/Extras/Mario Party 4 Widescreen Patch (for v1.01)/xdelta3
Executable file
Binary file not shown.
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 5 With Shops.iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 5 (USA) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 5 with Shops.iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 5 (USA) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
27
Data/Extras/Mario Party 5 Shop Mod/patch.sh
Normal file
27
Data/Extras/Mario Party 5 Shop Mod/patch.sh
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 5 (USA) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 5 With Shops.iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1,4 +1,4 @@
|
||||||
Drag a Mario Party 5 (USA) ISO onto the .BAT file to patch it.
|
Place the Mario Party 5 (USA) ISO in the script's directory and run the patch script to patch it.
|
||||||
|
|
||||||
Refer to this list for descriptions of capsules:
|
Refer to this list for descriptions of capsules:
|
||||||
https://www.mariowiki.com/Mario_Party_5#Capsules
|
https://www.mariowiki.com/Mario_Party_5#Capsules
|
BIN
Data/Extras/Mario Party 5 Shop Mod/xdelta3
Executable file
BIN
Data/Extras/Mario Party 5 Shop Mod/xdelta3
Executable file
Binary file not shown.
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 5 (USA) [Widescreen].iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 5 (USA) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 5 [Widescreen].iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 5 (USA) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
27
Data/Extras/Mario Party 5 Widescreen Patch/patch.sh
Normal file
27
Data/Extras/Mario Party 5 Widescreen Patch/patch.sh
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 5 (USA) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 5 (USA) [Widescreen].iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1 +1 @@
|
||||||
Drag a Mario Party 5 (USA) ISO onto the .BAT file to patch it.
|
Place the Mario Party 5 (USA) ISO in the script's directory and run the patch script to patch it.
|
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 6 (USA) [Widescreen].iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 6 (USA) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 6 [Widescreen].iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 6 (USA) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
27
Data/Extras/Mario Party 6 Widescreen Patch/patch.sh
Normal file
27
Data/Extras/Mario Party 6 Widescreen Patch/patch.sh
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 6 (USA) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 6 (USA) [Widescreen].iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1 +1 @@
|
||||||
Drag a Mario Party 6 (USA) ISO onto the .BAT file to patch it.
|
Place the Mario Party 6 (USA) ISO in the script's directory and run the patch script to patch it.
|
BIN
Data/Extras/Mario Party 6 Widescreen Patch/xdelta3
Executable file
BIN
Data/Extras/Mario Party 6 Widescreen Patch/xdelta3
Executable file
Binary file not shown.
|
@ -1,10 +1,30 @@
|
||||||
@echo off
|
@echo off
|
||||||
if [%1] == [] goto NoFile
|
setlocal enabledelayedexpansion
|
||||||
echo Given "%~1"
|
|
||||||
xdelta3-3.0.11-i686 -d -s "%~1" data.xdelta3 "Mario Party 7 (USA) [Widescreen].iso"
|
REM Get a list of ISO files in the same directory as the script
|
||||||
|
for %%F in ("%~dp0*.iso") do (
|
||||||
|
set "iso_files=!iso_files! "%%F""
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Check if there are no ISO files
|
||||||
|
if not defined iso_files (
|
||||||
|
echo.
|
||||||
|
echo No ISO files found in the same directory as the script.
|
||||||
|
echo Place the Mario Party 7 (USA) ISO in the script's directory and run it again.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Iterate over each ISO file and process it
|
||||||
|
for %%I in (%iso_files%) do (
|
||||||
|
echo.
|
||||||
|
echo Given "%%~I"
|
||||||
|
xdelta3.exe -d -s "%%~I" data.xdelta3 "Mario Party 7 [Widescreen].iso"
|
||||||
|
echo Press Enter to exit.
|
||||||
|
set /p "=<" NUL
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
pause
|
pause
|
||||||
exit
|
exit /b 0
|
||||||
:NoFile
|
|
||||||
echo Please drag a valid Mario Party 7 (USA) (v1.02) ISO onto this batch file.
|
|
||||||
pause
|
|
||||||
exit
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f -iname "*.iso")
|
||||||
|
|
||||||
|
# Check if there are no ISO files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 7 (USA) (v1.02) ISO in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Given \"$originalISO\""
|
||||||
|
xdelta3 -d -s "$originalISO" data.xdelta3 "Mario Party 7 (USA) [Widescreen].iso"
|
||||||
|
echo "Press Enter to exit."
|
||||||
|
read -p ""
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1 +1 @@
|
||||||
Drag a Mario Party 7 (USA) (v1.02) ISO onto the .BAT file to patch it.
|
Place the Mario Party 7 (USA) (v1.02) ISO in the script's directory and run the patch script to patch it.
|
BIN
Data/Extras/Mario Party 7 Widescreen Patch (for v1.02)/xdelta3
Executable file
BIN
Data/Extras/Mario Party 7 Widescreen Patch (for v1.02)/xdelta3
Executable file
Binary file not shown.
|
@ -1,6 +0,0 @@
|
||||||
Information
|
|
||||||
X=1
|
|
||||||
Y=2
|
|
||||||
IR on C Stick.
|
|
||||||
Taunts are activated by L.
|
|
||||||
Wiimotes are disabled.
|
|
43
Data/Extras/Mario Party 8 GC Controller Patch/patch.sh
Normal file
43
Data/Extras/Mario Party 8 GC Controller Patch/patch.sh
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get a list of ISO and WBFS files in the same directory as the script
|
||||||
|
iso_files=$(find "$(dirname "$0")" -maxdepth 1 -type f \( -iname "*.iso" -o -iname "*.wbfs" \))
|
||||||
|
|
||||||
|
# Check if there are no ISO or WBFS files
|
||||||
|
if [ -z "$iso_files" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "No ISO or WBFS files found in the same directory as the script."
|
||||||
|
echo "Place the Mario Party 8 (US) ISO or WBFS in the script's directory and run it again."
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Iterate over each ISO or WBFS file and process it
|
||||||
|
for originalISO in $iso_files; do
|
||||||
|
echo ""
|
||||||
|
echo "Constructing the Mario Party 8 GC Controller WBFS for \"$originalISO\". Please stand by...."
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/tools"
|
||||||
|
|
||||||
|
# Ensure temp directory exists
|
||||||
|
mkdir -p temp
|
||||||
|
|
||||||
|
wit extract "$originalISO" --dest=temp
|
||||||
|
|
||||||
|
if [ -d "temp/DATA" ]; then
|
||||||
|
cp -r "../mp8motion" "temp/DATA"
|
||||||
|
else
|
||||||
|
cp -r "../mp8motion" "temp"
|
||||||
|
fi
|
||||||
|
|
||||||
|
wit copy "temp" "../Mario Party 8 GC Controller.wbfs"
|
||||||
|
rm -rf temp
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "Construction complete for \"$originalISO\"!"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to exit..."
|
||||||
|
exit 0
|
|
@ -1 +1 @@
|
||||||
Drag and Drop a NTSC-U Mario Party 8 ISO or WBFS onto Mario Party 8 Widescreen Patcher.bat to produce an ISO
|
Place the Mario Party 8 ISO or WBFS in the script's directory and run the patch script to patch it.
|
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf
Executable file
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf
Executable file
Binary file not shown.
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf-cat
Executable file
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf-cat
Executable file
Binary file not shown.
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf-dump
Executable file
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wdf-dump
Executable file
Binary file not shown.
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wit
Executable file
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wit
Executable file
Binary file not shown.
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wwt
Executable file
BIN
Data/Extras/Mario Party 8 GC Controller Patch/tools/wwt
Executable file
Binary file not shown.
2
Externals/fmt/fmt
vendored
2
Externals/fmt/fmt
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit e69e5f977d458f2650bb346dadf2ad30c5320281
|
Subproject commit f5e54359df4c26b6230fc61d38aa294581393084
|
3
build_macos.sh
Normal file
3
build_macos.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
arch -arm64 python3 ../BuildMacOSUniversalBinary.py --distributor="Mario Party Netplay" --no-autoupdate --arm64_qt5_path="/opt/homebrew/opt/qt6" --x86_64_qt5_path="/usr/local/opt/qt6" --build_type="Debug"
|
4
xcodebuild/x86_64/dolphin-mpn.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
4
xcodebuild/x86_64/dolphin-mpn.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Workspace
|
||||||
|
version = "1.0">
|
||||||
|
</Workspace>
|
Loading…
Add table
Add a link
Reference in a new issue