Jason2013/demo

Replace old device names with new ones

Jason2013 opened this issue · 0 comments

for ($i = 0; $i < count($swtOldCardNameMatchList); $i++)
{
if (strtolower($properCardName) == strtolower($swtOldCardNameMatchList[$i]))
{
// cardName match
$tmpCheck = $i % 2;
if ($tmpCheck == 1)
{
// old cardName used
$properCardName = $swtOldCardNameMatchList[$i - 1];
$obj->videoCardName = $properCardName;
}
}
}

"GTX 1080" -> "GTX1080"
"GTX2070" -> "RTX2070"