File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -250,13 +250,14 @@ void GetSysInfo_SecureInfo(SysInfo* info, char nand_drive) {
250250 // Determine the sub-model from the first two digits of the digit part.
251251 if (first_digit && second_digit ) {
252252 if (IS_DEVKIT ) {
253- // missing: identification for IS-CLOSER-BOX (issue #276)
254253 if ((first_digit == '9' ) && (second_digit == '0' ) && (info -> int_model == MODEL_OLD_3DS )) {
255254 strncpy (info -> sub_model , "Partner-CTR" , countof ("Partner-CTR" ));
256255 } else if ((first_digit == '9' ) && (second_digit == '1' ) && (info -> int_model == MODEL_OLD_3DS )) {
257256 strncpy (info -> sub_model , "IS-CTR-BOX" , countof ("IS-CTR-BOX" ));
258257 } else if ((first_digit == '9' ) && (second_digit == '1' ) && (info -> int_model == MODEL_OLD_3DS_XL )) {
259258 strncpy (info -> sub_model , "IS-SPR-BOX" , countof ("IS-SPR-BOX" ));
259+ } else if ((first_digit == '9' ) && (second_digit == '0' ) && (info -> int_model == MODEL_NEW_3DS )){
260+ strncpy (info -> sub_model , "IS-RAY-DEBUGGER" , countof ("IS-RAY-DEBUGGER" ));
260261 } else if ((first_digit == '9' ) && (second_digit == '1' ) && (info -> int_model == MODEL_NEW_3DS )) {
261262 strncpy (info -> sub_model , "IS-SNAKE-BOX" , countof ("IS-SNAKE-BOX" ));
262263 } else {
You can’t perform that action at this time.
0 commit comments