From aed73d4e4f6e1b79c2e5fa59af3083ed3a533cb5 Mon Sep 17 00:00:00 2001 From: bnnm Date: Sun, 19 Jun 2022 19:37:03 +0200 Subject: [PATCH] Add FSB key --- src/meta/fsb_keys.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/meta/fsb_keys.h b/src/meta/fsb_keys.h index d84d6f9e..ac22d41d 100644 --- a/src/meta/fsb_keys.h +++ b/src/meta/fsb_keys.h @@ -86,6 +86,9 @@ static const uint8_t key_bbf[] = { 0x71,0x6A,0x76,0x6B,0x65,0x6F,0x71,0x6B,0x72, /* Fall Guys (PC)-update */ //"p@4_ih*srN:UJk&8" static const uint8_t key_fgs[] = { 0x70,0x40,0x34,0x5F,0x69,0x68,0x2A,0x73,0x72,0x4E,0x3A,0x55,0x4A,0x6B,0x26,0x38 }; +/* Achilles: Legends Untold (PC) */ //"Achilles_0_15_DpG" +static const uint8_t key_alu[] = { 0x41,0x63,0x68,0x69,0x6C,0x6C,0x65,0x73,0x5F,0x30,0x5F,0x31,0x35,0x5F,0x44,0x70,0x47 }; + // Unknown: // - Battle: Los Angeles // - Guitar Hero: Warriors of Rock, DJ hero FSB @@ -160,6 +163,7 @@ static const fsbkey_info fsbkey_list[] = { { 1,0, sizeof(key_wrb),key_wrb },// FSB5 { 0,0, sizeof(key_bbf),key_bbf },// FSB4 { 1,0, sizeof(key_fgs),key_fgs },// FSB5 + { 1,0, sizeof(key_alu),key_alu },// FSB5 }; static const int fsbkey_list_count = sizeof(fsbkey_list) / sizeof(fsbkey_list[0]);