mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 13:41:43 +00:00
docs: fix formatting for github
This commit is contained in:
parent
8bf8503fcd
commit
9bc45475f4
1 changed files with 8 additions and 8 deletions
|
@ -37,16 +37,16 @@ upload_enabled = u8!0x0
|
||||||
### Supported Types
|
### Supported Types
|
||||||
|
|
||||||
* Strings
|
* Strings
|
||||||
* Type identifiers: `str`, `string`
|
* Type identifiers: `str`, `string`
|
||||||
* The value string is used directly as the setting, with null terminator appended.
|
* The value string is used directly as the setting, with null terminator appended.
|
||||||
* Integral types
|
* Integral types
|
||||||
* Type identifiers: `u8`, `u16`, `u32`, `u64`
|
* Type identifiers: `u8`, `u16`, `u32`, `u64`
|
||||||
* The value string is parsed via a call to `strtoul(value, NULL, 0)`.
|
* The value string is parsed via a call to `strtoul(value, NULL, 0)`.
|
||||||
* Setting bitwidth is determined by the identifier (8 for 1 byte, 16 for 2 bytes, and so on).
|
* Setting bitwidth is determined by the identifier (8 for 1 byte, 16 for 2 bytes, and so on).
|
||||||
* Raw bytes
|
* Raw bytes
|
||||||
* Type identifiers: `hex`, `bytes`
|
* Type identifiers: `hex`, `bytes`
|
||||||
* The value string is parsed as a hexadecimal string.
|
* The value string is parsed as a hexadecimal string.
|
||||||
* The value string must be of even length, or a fatal error will be thrown on parse.
|
* The value string must be of even length, or a fatal error will be thrown on parse.
|
||||||
|
|
||||||
### Atmosphère Custom Settings
|
### Atmosphère Custom Settings
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue