wiiu-env / libmocha

GNU Lesser General Public License v3.0
5 stars 7 forks source link

This vs Wut #24

Closed Jacoby6000 closed 3 weeks ago

Jacoby6000 commented 1 month ago

I'm working on updating an old WiiU app to work with aroma, and in the process I'm needing to update some libraries. Most notably, there have been significant changes to devoptab related stuff in wut and libmocha since this app was last updated.

What is the difference between wutdevoptab and libmocha's devoptab stuff?

Maschell commented 1 month ago

It depends on what you want to access. In each homebrew app you can access it's wut devoptab via fs:, but it's also limited to the permission a "normal" application acess. Usually you can just access the SD card and read some parts of the MLC.

If you want/need full access to the system, you can use libmocha. Libmocha lets you mounts devices you may want to access (e.g. the odd/disc) and by default gives you an "unlocked" client to have full file system permission.

Jacoby6000 commented 3 weeks ago

Ahhh ok, that clears up a lot! Thank you!