Updated README files with new /contents path instead of /titles

This commit is contained in:
TehPsychedelic 2020-01-18 01:52:25 -05:00
parent 3a91a6b786
commit 71d1269079
No known key found for this signature in database
GPG key ID: AA3F64288A12A7CC
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ By default, Atmosphère will do the following when deciding whether to attach to
+ The ini key to configure this is `cheat_enable_key`.
+ Check whether the process is a real application, and stop if not.
+ This guards against applying cheat codes to the homebrew loader.
+ Attempt to load cheats from `atmosphere/titles/<title_id>/cheats/<build_id>.txt`, where `build_id` is the hexadecimal representation of the first 8 bytes of the application's main executable's build id.
+ Attempt to load cheats from `atmosphere/contents/<title_id>/cheats/<build_id>.txt`, where `build_id` is the hexadecimal representation of the first 8 bytes of the application's main executable's build id.
+ If no cheats are found, then the cheat manager will stop.
+ Open a kernel debug session for the new application process.
+ Signal to a system event that a new cheat process has been attached to.

View file

@ -1,7 +1,7 @@
# Flags
Atmosphère supports customizing CFW behavior based on the presence of `flags` on the SD card.
The following flags are supported on a per-title basis, by placing `<flag_name>.flag` inside `/atmosphere/titles/<title_id>/flags/`:
The following flags are supported on a per-title basis, by placing `<flag_name>.flag` inside `/atmosphere/contents/<title_id>/flags/`:
+ `boot2`, which indicates to PM that the title should be launched during the `boot2` process.
+ `fsmitm`, which indicates that `fs.mitm` should override contents for the title even if it otherwise wouldn't.
+ `fsmitm_disable`, which indicates that `fs.mitm` should not override contents for the title, even it it otherwise would.

View file

@ -28,7 +28,7 @@ Additionally, when a process is loaded, loader will search for a `main.npdm` fil
Atmosphère extends this functionality by also searching for these files on the SD card. When searching for a file, loader will first check if it exists on the SD card. If it does, that file will be used instead. Otherwise, it will use the copy located in the exefs, if that is present. The following directory will be searched.
```
sdmc:/atmosphere/titles/<title id>/exefs/
sdmc:/atmosphere/contents/<title id>/exefs/
```
This allows the replacement of applets, sysmodules, or even games with homebrew versions.