diff --git a/common/gal/opengl/opengl_gal.cpp b/common/gal/opengl/opengl_gal.cpp index c848814ec5..fae690cccc 100644 --- a/common/gal/opengl/opengl_gal.cpp +++ b/common/gal/opengl/opengl_gal.cpp @@ -218,7 +218,7 @@ GLuint GL_BITMAP_CACHE::cacheBitmap( const BITMAP_BASE* aBitmap ) { memcpy( dstP, srcP, 3 ); - if( dstP[0] == maskRed && dstP[1] == maskGreen && dstP[2] == maskBlue ) + if( srcP[0] == maskRed && srcP[1] == maskGreen && srcP[2] == maskBlue ) dstP[3] = wxALPHA_TRANSPARENT; else dstP[3] = wxALPHA_OPAQUE;