From 1b2697ef3bc8f76dbf8e2649292f43ed4a90df6f Mon Sep 17 00:00:00 2001 From: Brennen Murphy Date: Thu, 3 Oct 2024 20:28:11 -0400 Subject: [PATCH] Created registry directory for previous fix to work correctly --- contrib/PC/MagicMemoryCreator/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/PC/MagicMemoryCreator/main.py b/contrib/PC/MagicMemoryCreator/main.py index 66147de8..6cf33ffd 100755 --- a/contrib/PC/MagicMemoryCreator/main.py +++ b/contrib/PC/MagicMemoryCreator/main.py @@ -211,11 +211,13 @@ def run() -> None: os.system('./pspdecrypt -e 150.PBP') shutil.copytree("150/F0", "TM/DCARK/150", dirs_exist_ok=True) shutil.copytree("150/F1", "TM/DCARK/150", dirs_exist_ok=True) + os.mkdir("TM/DCARK/150/registry") os.rename("TM/DCARK/150/kd/pspbtcnf_game.txt_new", "TM/DCARK/150/kd/pspbtcnf_game.txt") else: os.system('.\\pspdecrypt.exe -e 150.PBP') shutil.copytree("150\\F0\\", "TM\\DCARK\\150\\", dirs_exist_ok=True) shutil.copytree("150\\F1\\", "TM\\DCARK\\150\\", dirs_exist_ok=True) + os.mkdir("TM\\DCARK\\150\\registry") os.rename("TM\\DCARK\\150\\kd\\pspbtcnf_game.txt_new", "TM\\DCARK\\150\\kd\\pspbtcnf_game.txt")