From 34df049bc25069c520c2cccca0df8eee5d224621 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Fri, 9 Feb 2024 19:31:55 -0700 Subject: [PATCH] Check `SCSD` DLDI name for SuperCard MiniSD as well --- title/arm9/source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/title/arm9/source/main.cpp b/title/arm9/source/main.cpp index 4a7cb59830..09abad0709 100644 --- a/title/arm9/source/main.cpp +++ b/title/arm9/source/main.cpp @@ -1789,7 +1789,7 @@ int titleMode(void) *(u16*)(0x020000C0) = 0x334D; } else if (memcmp(io_dldi_data->friendlyName, "G6", 2) == 0) { *(u16*)(0x020000C0) = 0x3647; - } else if (memcmp(io_dldi_data->friendlyName, "SuperCard", 9) == 0) { + } else if (memcmp(io_dldi_data->friendlyName, "SuperCard", 9) == 0 || memcmp(io_dldi_data->friendlyName, "SCSD", 4) == 0) { *(u16*)(0x020000C0) = 0x4353; } }