Don't pointlessly construct a wxBitmap

(cherry picked from commit fd83e675a2)
This commit is contained in:
Marek Roszko 2022-04-10 07:46:54 -04:00 committed by Mark Roszko
parent 529048dac1
commit 99456d4351
1 changed files with 0 additions and 1 deletions

View File

@ -158,7 +158,6 @@ wxImage BITMAP_STORE::getImage( BITMAPS aBitmapId, int aHeight )
wxMemoryInputStream is( data, count );
wxImage image( is, wxBITMAP_TYPE_PNG );
wxBitmap bitmap( image );
return image;
}