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

--HG--
branch : develop
This commit is contained in:
kervala 2016-01-05 12:53:32 +01:00
parent 798cb1c7ce
commit 687301377e

View file

@ -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;
}