mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
0 means transparent
This commit is contained in:
parent
0fa5f5fcd5
commit
5fc86dbe3a
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ public class JNIUtilsImpl implements JNIUtils {
|
|||
for ( int yy = 0; yy < height; ++yy ) {
|
||||
for ( int xx = 0; xx < width; ++xx ) {
|
||||
boolean pixelSet = colors[indx++];
|
||||
bitmap.setPixel( xx, yy, pixelSet? 0xFF000000 : 0x00FFFFFF );
|
||||
bitmap.setPixel( xx, yy, pixelSet? 0xFF000000 : 0x00 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue