From 45438060bbd32a0aba38b97ba31aa88cf83a95da Mon Sep 17 00:00:00 2001 From: Naim2000 Date: Thu, 25 Jul 2024 14:06:26 -0500 Subject: [PATCH] fs.print_root() was in the wrong sanity function --- MSET9_installer_script/mset9.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MSET9_installer_script/mset9.py b/MSET9_installer_script/mset9.py index 03496df..2ce8975 100644 --- a/MSET9_installer_script/mset9.py +++ b/MSET9_installer_script/mset9.py @@ -748,8 +748,6 @@ miiExtdataGood = False def sanity(): global fs, hackedID1Path, titleDatabasesGood, menuExtdataGood, miiExtdataGood - fs.print_root() - prinfo("Checking databases...") checkTitledb = softcheck(hackedID1Path + "/dbs/title.db", 0x31E400) checkImportdb = softcheck(hackedID1Path + "/dbs/import.db", 0x31E400) @@ -778,6 +776,8 @@ def sanity(): return menuExtdataGood and miiExtdataGood and titleDatabasesGood def sanityReport(): + fs.print_root() + if not menuExtdataGood: prbad("HOME menu extdata: Missing!") prinfo("Please power on your console with your SD inserted, then check again.")