From f03231d15b85570a3185d271c83e42bfb3b23edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Wed, 11 May 2022 22:12:16 +0200 Subject: [PATCH] Fix for PSX Cheats --- .github/update_distribution.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/update_distribution.sh b/.github/update_distribution.sh index 3c5a3e1fc..48e4c54aa 100755 --- a/.github/update_distribution.sh +++ b/.github/update_distribution.sh @@ -43,6 +43,9 @@ update_distribution() { echo "Running detox" detox -v -s utf_8-only -r * echo "Detox done" + echo "Removing colons" + find . -name "*:*" -exec rename 's|:|-|g' {} \; + echo "Colons removed" git add "${OUTPUT_FOLDER}" git commit -m "-" git fetch origin main || true @@ -575,6 +578,7 @@ declare -A CHEAT_MAPPINGS=( \ ["nes"]="NES" \ ["pce"]="TGFX16" \ ["pcd"]="TGFX16-CD" \ + ["psx"]="PSX" \ ["scd"]="MegaCD" \ ["sms"]="SMS" \ ["snes"]="SNES" \