mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-30 21:14:24 +01:00
add ppf patching function
This commit is contained in:
parent
8936430724
commit
11af1f8555
@ -141,6 +141,20 @@ patchimage_ips () {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
patchimage_ppf () {
|
||||||
|
show_notes
|
||||||
|
check_input_rom
|
||||||
|
|
||||||
|
if [[ -f ${PATCH} ]]; then
|
||||||
|
ext="${ROM/*.}"
|
||||||
|
cp "${ROM}" "${GAMENAME}.${ext}"
|
||||||
|
"${PPF}" a "${PATCH}" "${GAMENAME}.${ext}" || exit 51
|
||||||
|
else
|
||||||
|
echo -e "error: patch (${PATCH}) could not be found"
|
||||||
|
exit 21
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
patchimage_hans () {
|
patchimage_hans () {
|
||||||
|
|
||||||
show_notes
|
show_notes
|
||||||
@ -408,6 +422,10 @@ for game in ${GAME[@]}; do
|
|||||||
patchimage_ips
|
patchimage_ips
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"PPF" )
|
||||||
|
patchimage_ppf
|
||||||
|
;;
|
||||||
|
|
||||||
"HANS" )
|
"HANS" )
|
||||||
patchimage_hans
|
patchimage_hans
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user