Skip to content

Commit

Permalink
Recognize production mic and IDE-EXI
Browse files Browse the repository at this point in the history
  • Loading branch information
Extrems committed Sep 1, 2023
1 parent f1e761d commit d6c75cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libogc/exi.c
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,7 @@ s32 EXI_GetType(s32 nChn,s32 nDev,u32 *nType)
case 0x04020200:
case 0x04020300:
case 0x04060000:
case 0x49444500:
*nType = nId&~0xff;
return ret;
}
Expand Down Expand Up @@ -730,11 +731,14 @@ char *EXI_GetTypeString(u32 nType)
case 0x04020300:
return "Broadband Adapter";
case 0x04060000:
case 0x0a000000:
return "Mic";
case 0x04130000:
return "Stream Hanger";
case 0x05070000:
return "IS-DOL-VIEWER";
case 0x49444500:
return "IDE-EXI";
default:
return "Unknown";
}
Expand Down

0 comments on commit d6c75cf

Please sign in to comment.