Fix chars mode.
This commit is contained in:
		| @@ -69,7 +69,7 @@ fn main() -> std::io::Result<()> { | |||||||
|         for i in start_index..(start_index + 8) { |         for i in start_index..(start_index + 8) { | ||||||
|             let b = buffer[i]; |             let b = buffer[i]; | ||||||
|             for j in 0..8 { |             for j in 0..8 { | ||||||
|                 frame[y][x] = { |                 frame[y * 8 + i][x * 8 + j] = { | ||||||
|                     if b & (1 << j) != 0 { |                     if b & (1 << j) != 0 { | ||||||
|                         color |                         color | ||||||
|                     } else { |                     } else { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Juergen Stuber
					Juergen Stuber