@@ -754,9 +754,10 @@ def createHaxID1():
754754titleDatabasesGood = False
755755menuExtdataGood = False
756756miiExtdataGood = False
757+ miiPlazaExtdata = False
757758
758759def sanity ():
759- global fs , hackedID1Path , titleDatabasesGood , menuExtdataGood , miiExtdataGood
760+ global fs , hackedID1Path , titleDatabasesGood , menuExtdataGood , miiExtdataGood , miiPlazaExtdata
760761
761762 prinfo ("Checking databases..." )
762763 checkTitledb = softcheck (hackedID1Path + "/dbs/title.db" , 0x31E400 )
@@ -771,15 +772,16 @@ def sanity():
771772
772773 prinfo ("Checking for HOME Menu extdata..." )
773774 for i in homeMenuExtdata :
774- extdataRegionCheck = hackedID1Path + f"/extdata/00000000/{ i :08X} "
775- if fs .exists (extdataRegionCheck ):
775+ if fs .exists (hackedID1Path + f"/extdata/00000000/{ i :08X} " ):
776776 menuExtdataGood = True
777777 break
778778
779779 prinfo ("Checking for Mii Maker extdata..." )
780780 for i in miiMakerExtdata :
781- extdataRegionCheck = hackedID1Path + f"/extdata/00000000/{ i :08X} "
782- if fs .exists (extdataRegionCheck ):
781+ if fs .exists (hackedID1Path + f"/extdata/00000000/{ i + 1 :08X} " ): # *
782+ miiPlazaExtdata = True
783+
784+ if fs .exists (hackedID1Path + f"/extdata/00000000/{ i :08X} " ):
783785 miiExtdataGood = True
784786 break
785787
@@ -800,6 +802,9 @@ def sanityReport():
800802 if not miiExtdataGood :
801803 prbad ("Mii Maker extdata: Missing!" )
802804 prinfo ("Please power on your console with your SD inserted, then launch Mii Maker." )
805+ # *
806+ if miiPlazaExtdata :
807+ prinfo ("Reminder: Mii Maker is the app with the \" Mii\" icon; StreetPass Mii Plaza is different!" )
803808 else :
804809 prgood ("Mii Maker extdata: OK!" )
805810
0 commit comments