[ROM Browser] removed extraneous copy of call to strtoul()

This commit is contained in:
unknown 2015-11-17 21:28:41 -05:00
parent 96bd77edcc
commit 4fb000462a
1 changed files with 0 additions and 1 deletions

View File

@ -433,7 +433,6 @@ void CRomBrowser::FillRomExtensionInfo(ROM_INFO * pRomInfo)
}
else
{
selcol = (std::strtoul(String, 0, 16) & 0xFFFFFF);
selcol = (selcol & 0x00FF00) | ((selcol >> 0x10) & 0xFF) | ((selcol & 0xFF) << 0x10);
pRomInfo->SelColor = selcol;
}