Skip to content

Commit 4e38287

Browse files
committed
Change order of operations for RPCS3 0.10.0b post-update actions
1 parent 901f882 commit 4e38287

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

rpcs3/component_update.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,15 @@ if [[ $(check_version_is_older_than "$version_being_updated" "0.10.0b") == "true
4646

4747
# Since in 0.10.0b we added the storage folder we need to migrate the folders
4848
sed -i 's^\^$(EmulatorDir): .*^$(EmulatorDir): '"$storage_path/rpcs3/"'^' "$rpcs3_config_vfs"
49-
dir_prep "$saves_path/ps3/rpcs3" "$storage_path/rpcs3/dev_hdd0/home/00000001/savedata"
50-
dir_prep "$states_path/ps3/rpcs3" "$XDG_CONFIG_HOME/rpcs3/savestates"
5149
move "$bios_folder/rpcs3/dev_hdd0" "$storage_path/rpcs3/dev_hdd0"
5250
move "$bios_folder/rpcs3/dev_hdd1" "$storage_path/rpcs3/dev_hdd1"
5351
move "$bios_folder/rpcs3/dev_flash" "$storage_path/rpcs3/dev_flash"
5452
move "$bios_folder/rpcs3/dev_flash2" "$storage_path/rpcs3/dev_flash2"
5553
move "$bios_folder/rpcs3/dev_flash3" "$storage_path/rpcs3/dev_flash3"
5654
move "$bios_folder/rpcs3/dev_bdvd" "$storage_path/rpcs3/dev_bdvd"
5755
move "$bios_folder/rpcs3/dev_usb000" "$storage_path/rpcs3/dev_usb000"
56+
dir_prep "$saves_path/ps3/rpcs3" "$storage_path/rpcs3/dev_hdd0/home/00000001/savedata"
57+
dir_prep "$states_path/ps3/rpcs3" "$XDG_CONFIG_HOME/rpcs3/savestates"
5858
dir_prep "$storage_path/rpcs3/captures" "$XDG_CONFIG_HOME/rpcs3/captures"
5959
dir_prep "$storage_path/rpcs3/patches" "$XDG_CONFIG_HOME/rpcs3/patches"
60-
6160
fi

0 commit comments

Comments
 (0)