mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 12:11:44 +00:00
Update default dump options.
This commit is contained in:
parent
bd2bf2c8f4
commit
9e337a5d0a
3 changed files with 5 additions and 5 deletions
|
@ -51,14 +51,14 @@ typedef struct {
|
|||
|
||||
static options_t options[] = {
|
||||
{ "set download distribution type", 0 },
|
||||
{ "remove console specific data", 0 },
|
||||
{ "remove console specific data", 1 },
|
||||
{ "remove titlekey crypto (overrides previous option)", 0 },
|
||||
{ "change acid rsa key/sig", 0 },
|
||||
{ "disable linked account requirement", 0 },
|
||||
{ "enable screenshots", 0 },
|
||||
{ "enable video capture", 0 },
|
||||
{ "disable hdcp", 0 },
|
||||
{ "append authoringtool data", 1 },
|
||||
{ "append authoringtool data", 0 },
|
||||
{ "output device", 0 }
|
||||
};
|
||||
|
||||
|
|
|
@ -59,14 +59,14 @@ typedef struct {
|
|||
|
||||
static options_t options[] = {
|
||||
{ "set download distribution type", false },
|
||||
{ "remove console specific data", false },
|
||||
{ "remove console specific data", true },
|
||||
{ "remove titlekey crypto (overrides previous option)", false },
|
||||
{ "change acid rsa key/sig", false },
|
||||
{ "disable linked account requirement", false },
|
||||
{ "enable screenshots", false },
|
||||
{ "enable video capture", false },
|
||||
{ "disable hdcp", false },
|
||||
{ "append authoringtool data", true }
|
||||
{ "append authoringtool data", false }
|
||||
};
|
||||
|
||||
static const u32 options_count = MAX_ELEMENTS(options);
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"enable_screenshots": false,
|
||||
"enable_video_capture": false,
|
||||
"disable_hdcp": false,
|
||||
"append_authoringtool_data": true,
|
||||
"append_authoringtool_data": false,
|
||||
"lookup_checksum": true
|
||||
},
|
||||
"ticket": {
|
||||
|
|
Loading…
Reference in a new issue