Fix chars again.

This commit is contained in:
Juergen Stuber 2018-12-31 20:28:49 +01:00
parent 7db7664217
commit 360bc5f392
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ fn main() -> std::io::Result<()> {
let y = rng.gen_range(0, y_size / 8);
let color = pick_color(c0, c1, &mut rng);
let start_index = rng.gen_range(0, buffer.len() / 8) * 8;
for i in start_index..(start_index + 8) {
let b = buffer[i];
for i in 0..8 {
let b = buffer[start_index + i];
for j in 0..8 {
frame[y * 8 + i][x * 8 + j] = {
if b & (1 << j) != 0 {