-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MSET9: Fresh Edition #38
Conversation
New MSET9 guide layout Section I - Prep work
Section II - Creating required files
Section III - MSET9
Section IV - Installing boot9strap Section V - Removing MSET9
Poor MSET9 play store is getting left out |
TODO:
|
Working on the guide component of this now. |
prinfo("Visual guide: https://3ds.hacks.guide/images/screenshots/database-reset.jpg") | ||
exitOnEnter() | ||
if osver == "Linux": # ... | ||
print("(on Linux, things like to not go right - please ensure that your SD card is mounted with the 'utf8' option.)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Second line of information can help a person, my linux mounted automatically utf-8 but that may be of my system locale pt_PT.UTF-8, otherwise can tell the user to mount again with the argument utf8
, utf8=1
, utf8=yes
or utf8=true
and uni_xlate
argument must not be set, iocharset=utf8
also discouraged for vfat.
Using mount -o remount,utf8
does not fully give intended result for vfat remount as utf8!
We can also test if we are likely ready for utf-8, open()
with wb
will fail with OSError exception over errno 22 with characters invalid for vfat if it isn't mounted with utf-8, something we can test in try and except block, OSError exception has the attribute .errno
with the integer to check.
This will cause it to not fail on Cygwin
Update the credits
Generate fresh files in the hacked ID1 Instead of copying them from the original ID1. Should work about 100% more of the time
TODO:
A good way to separate removing the trigger file and the hacked ID1 as a whole. I think i just had an idea with that haxStates line i left commented outDid that