Skip to content

Commit

Permalink
ASA: Added DLC unlock entries for ARK: Aberration Ascended and ARK Fa…
Browse files Browse the repository at this point in the history
…ntastic Tames - Dreadmare
  • Loading branch information
Nuclearistt committed Oct 31, 2024
1 parent 951692b commit 0f5eebb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ static void *isteam_apps_vtable[29];
static struct cpp_interface_wrapper isteam_apps_wrapper;

static bool return_true() { return true; }
static int asa_get_dlc_count() { return 4; }
static int asa_get_dlc_count() { return 6; }
static bool asa_get_dlc_data_by_index(struct cpp_interface_wrapper *_, int iDLC,
uint32_t *pAppID, bool *pbAvailable,
char *pchName) {
Expand All @@ -169,6 +169,16 @@ static bool asa_get_dlc_data_by_index(struct cpp_interface_wrapper *_, int iDLC,
*pAppID = 2972680;
memcpy(pchName, "ARK Fantastic Tames - Pyromane", sizeof("ARK Fantastic Tames - Pyromane"));
return true;
case 4:
*pAppID = 3059650;
memcpy(pchName, "ARK: Aberration Ascended",
sizeof("ARK: Aberration Ascended"));
return true;
case 5:
*pAppID = 3282470;
memcpy(pchName, "ARK Fantastic Tames - Dreadmare",
sizeof("ARK Fantastic Tames - Dreadmare"));
return true;
default:
return false;
}
Expand Down

0 comments on commit 0f5eebb

Please sign in to comment.