mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
be4ca7eee5
* Implement Auto Reboot Timer (#518) * Use > to check for values below -1 * Use TimeoutHelper and accept MS * Add fatal_auto_reboot_interval into config (commented) * Check for 0
27 lines
No EOL
1.1 KiB
INI
27 lines
No EOL
1.1 KiB
INI
; Disable uploading error reports to Nintendo
|
||
[eupld]
|
||
upload_enabled = u8!0x0
|
||
; Enable USB 3.0 superspeed for homebrew
|
||
[usb]
|
||
usb30_force_enabled = u8!0x0
|
||
; Atmosphere custom settings
|
||
[atmosphere]
|
||
; Reboot from fatal automatically after 5 seconds (in milliseconds)
|
||
; If field is disabled fatal waits for an input indefinitely
|
||
; fatal_auto_reboot_interval = u64!5000
|
||
; Make the power menu's "reboot" button reboot to payload.
|
||
; Set to "normal" for normal reboot, "rcm" for rcm reboot.
|
||
power_menu_reboot_function = str!payload
|
||
; Controls whether dmnt cheats should be toggled on or off by
|
||
; default. 1 = toggled on by default, 0 = toggled off by default.
|
||
dmnt_cheats_enabled_by_default = u8!0x1
|
||
; Controls whether dmnt should always save cheat toggle state
|
||
; for restoration on new game launch. 1 = always save toggles,
|
||
; 0 = only save toggles if toggle file exists.
|
||
dmnt_always_save_cheat_toggles = u8!0x0
|
||
; Controls whether fs.mitm should redirect save files
|
||
; to directories on the sd card.
|
||
; 0 = Do not redirect, 1 = Redirect.
|
||
; NOTE: EXPERIMENTAL
|
||
; If you do not know what you are doing, do not touch this yet.
|
||
fsmitm_redirect_saves_to_sd = u8!0x0 |