Skip to content

Commit

Permalink
change default color to gray
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed May 8, 2012
1 parent a4d580a commit 45af49b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class BlockManager(room: String, screenDim: Dimension, blockDim: Dimension) exte
val dim: Dimension = block.getDimension();
var blankPixels = new Array[Int](dim.width * dim.height)
for (i: Int <- 0 until blankPixels.length) {
blankPixels(i) = 0xF;
blankPixels(i) = 0xCECECE;
}
val encodedPixels = ScreenVideoEncoder.encodePixels(blankPixels, dim.width, dim.height)
block.update(encodedPixels, true, 0)
Expand Down

0 comments on commit 45af49b

Please sign in to comment.