Skip to content

Commit

Permalink
Check SCSD DLDI name for SuperCard MiniSD as well
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Feb 10, 2024
1 parent 54e3b3d commit 34df049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion title/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 34df049

Please sign in to comment.