Warning fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -278,7 +278,7 @@ bool wxBMPHandler::SaveDib(wxImage *image,
|
||||
for ( int i = 0; i < palette_size; i++ )
|
||||
{
|
||||
// if 1BPP_BW then the value should be either 0 or 255
|
||||
wxUint8 c = (i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i;
|
||||
wxUint8 c = (wxUint8)((i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i);
|
||||
|
||||
rgbquad[i*4] =
|
||||
rgbquad[i*4+1] =
|
||||
|
Reference in New Issue
Block a user