Fixed: Instead of returning an error, convert the bitmap in RGBA

--HG--
branch : develop
hg/feature/material-editor
kervala 9 years ago
parent 798cb1c7ce
commit 687301377e

@ -268,7 +268,11 @@ int main(int nNbArg, char **ppArgs)
uint8 colors = pBtmp->load(inFile);
if (colors != 32) throw NLMISC::Exception(AllMapNames[i] + " is using " + toString(colors) + " bits colors, only 32 bit supported!");
if (pBtmp->getPixelFormat() != CBitmap::RGBA)
{
nlwarning("Converting %s to RGBA (32 bits), originally using %u bits...", AllMapNames[i].c_str(), (uint)colors);
pBtmp->convertToType(CBitmap::RGBA);
}
AllMaps[i] = pBtmp;
}

Loading…
Cancel
Save