Update Rom Information Class.cpp
Experimental: 64DD IPL support
This commit is contained in:
parent
5ff00eeaa8
commit
fc1ce7f6d3
|
@ -125,7 +125,14 @@ DWORD CALLBACK RomInfoProc (HWND hDlg, DWORD uMsg, DWORD wParam, DWORD lParam) {
|
|||
|
||||
if (_this->m_pRomInfo->CicChipID() == CIC_UNKNOWN) {
|
||||
sprintf(&String[1],"Unknown");
|
||||
} else {
|
||||
}
|
||||
else if (_this->m_pRomInfo->CicChipID() == CIC_NUS_DDIPL) {
|
||||
sprintf(&String[1], "64DD IPL");
|
||||
}
|
||||
else if (_this->m_pRomInfo->CicChipID() == CIC_NUS_8303) {
|
||||
sprintf(&String[1], "CIC-NUS-8303");
|
||||
}
|
||||
else {
|
||||
sprintf(&String[1],"CIC-NUS-610%d",_this->m_pRomInfo->CicChipID());
|
||||
}
|
||||
SetDlgItemText(hDlg,IDC_INFO_CIC,String);
|
||||
|
|
Loading…
Reference in New Issue