Skip to content

Commit

Permalink
Disable SD card prompt for SanDisk SD cards with PT as OEM ID
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed May 24, 2024
1 parent 6e91299 commit 635072c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion booter/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ int main(int argc, char **argv) {
if (
(manufID == 0x0001 && strcmp(oemID, "PA") == 0) // Panasonic
|| (manufID == 0x0002 && strcmp(oemID, "TM") == 0) // Kingston/PNY
|| (manufID == 0x0003 && strcmp(oemID, "SD") == 0) // SanDisk
|| (manufID == 0x0003 && (strcmp(oemID, "SD") == 0 || strcmp(oemID, "PT") == 0)) // SanDisk
|| (manufID == 0x0009 && strcmp(oemID, "AP") == 0) // Lexar
|| (manufID == 0x001B && strcmp(oemID, "SM") == 0) // PNY/Samsung
|| (manufID == 0x001D && strcmp(oemID, "AD") == 0) // (Some?) A-Data/extrememory/Microcenter
Expand Down

0 comments on commit 635072c

Please sign in to comment.