From 20317226fb90c73ab5fb22433c817b72ad1d2401 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Mon, 8 Oct 2018 13:52:23 -0600 Subject: [PATCH] Add support for more AK2i cards --- arm9/source/driveOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/driveOperations.cpp b/arm9/source/driveOperations.cpp index 1b837c6..f61f395 100644 --- a/arm9/source/driveOperations.cpp +++ b/arm9/source/driveOperations.cpp @@ -144,7 +144,7 @@ TWL_CODE bool twl_flashcardMount(void) { if (!memcmp(gamename, "QMATETRIAL", 9) || !memcmp(gamename, "R4DSULTRA", 9)) { io_dldi_data = dldiLoadFromBin(r4idsn_sd_dldi); return fatMountSimple("fat", &io_dldi_data->ioInterface); - } else if (!memcmp(gameid, "YCEP", 4) || !memcmp(gameid, "AHZH", 4)) { + } else if (!memcmp(gameid, "ACEK", 4) || !memcmp(gameid, "YCEP", 4) || !memcmp(gameid, "AHZH", 4)) { io_dldi_data = dldiLoadFromBin(ak2_sd_dldi); return fatMountSimple("fat", &io_dldi_data->ioInterface); }