From c7379df2a479582cc8386f91098724fbdafecb15 Mon Sep 17 00:00:00 2001 From: bnnm Date: Fri, 22 Mar 2019 19:43:51 +0100 Subject: [PATCH] Add .fsb key [Sekiro (PC)] --- src/meta/fsb_keys.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/meta/fsb_keys.h b/src/meta/fsb_keys.h index bdcc7766..cb44125c 100644 --- a/src/meta/fsb_keys.h +++ b/src/meta/fsb_keys.h @@ -9,7 +9,7 @@ typedef struct { } fsbkey_info; /** - * List of known keys, found in aluigi's site (http://aluigi.altervista.org), forums and with guessfsb.exe + * List of known keys, found in aluigi's site (http://aluigi.altervista.org), forums, guessfsb.exe or manually. */ /* DJ Hero 2 (X360) */ //"nos71RiT" @@ -75,6 +75,9 @@ static const uint8_t key_mtj[] = { 0x74,0x72,0x75,0x63,0x6B,0x2F,0x69,0x6D,0x70, /* Guitar Hero 5 (X360) */ static const uint8_t key_gh5[] = { 0xFC,0xF9,0xE4,0xB3,0xF5,0x57,0x5C,0xA5,0xAC,0x13,0xEC,0x4A,0x43,0x19,0x58,0xEB,0x4E,0xF3,0x84,0x0B,0x8B,0x78,0xFA,0xFD,0xBB,0x18,0x46,0x7E,0x31,0xFB,0xD0 }; +/* Sekiro: Shadows Die Twice (PC) */ //"G0KTrWjS9syqF7vVD6RaVXlFD91gMgkC" +static const uint8_t key_sek[] = { 0x47,0x30,0x4B,0x54,0x72,0x57,0x6A,0x53,0x39,0x73,0x79,0x71,0x46,0x37,0x76,0x56,0x44,0x36,0x52,0x61,0x56,0x58,0x6C,0x46,0x44,0x39,0x31,0x67,0x4D,0x67,0x6B,0x43 }; + // Unknown: // - Battle: Los Angeles // - Guitar Hero: Warriors of Rock, DJ hero FSB @@ -137,6 +140,7 @@ static const fsbkey_info fsbkey_list[] = { { 1,0, sizeof(key_cro),key_cro }, { 0,1, sizeof(key_mtj),key_mtj },// FSB3 { 0,1, sizeof(key_gh5),key_gh5 },// FSB4 + { 1,0, sizeof(key_sek),key_sek },// FSB5 }; static const int fsbkey_list_count = sizeof(fsbkey_list) / sizeof(fsbkey_list[0]);