Project

General

Profile

Bug #347 » SystemInfo.cpp.patch

psyko_chewbacca, 03/10/2015 11:39 PM

View differences:

SystemInfo.cpp (working copy)
CStdString CSysInfo::SmartXXModCHIP()
{
// SmartXX ModChip Detection
unsigned char uSmartXX_ID = ((_inp(0xf701)) & 0xf);
unsigned char uSmartXX_ID = ((_inp(0xf701)));
if( uSmartXX_ID == 0x11 )
return "Aladdin XBlast";
else if( uSmartXX_ID == 0x15 )
return "XBlast Lite V1";
uSmartXX_ID &= 0xf;
if ( uSmartXX_ID == 1 ) // SmartXX V1+V2
return "SmartXX V1/V2";
else if ( uSmartXX_ID == 2 ) // SmartXX V1+V2
(1-1/2)