From 9275042935c6b2e688e5ec6fab04283c7849da42 Mon Sep 17 00:00:00 2001 From: Winestone Date: Sat, 18 Apr 2020 22:18:07 +1000 Subject: [PATCH] Fix bug where you couldn't swap back sony's architecture after changing it --- script/coreclick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/coreclick.js b/script/coreclick.js index e426b78..f0ad651 100644 --- a/script/coreclick.js +++ b/script/coreclick.js @@ -361,8 +361,8 @@ checkCoreArchOsAilment = function(x_core){ if(arch == "SPARC-32bit") return rmCoreAilment(x_core, 'os_arch_mismatch') break - case "PowerPC-32bit": - if(arch == "CellOS-32bit") + case "CellOS-32bit": + if(arch == "PowerPC-32bit") return rmCoreAilment(x_core, 'os_arch_mismatch') break }