Skip to content
Snippets Groups Projects
Verified Commit 3dc6bf7d authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: new todo element

parent 72303cfa
No related branches found
No related tags found
1 merge request!3Working version of the neo implementation 🥳
Pipeline #609 passed
......@@ -111,6 +111,8 @@ impl Chip8Neo {
for j in 0..8 {
x = (x + j) % DISPLAY_WIDTH as u8;
let pixel = self.ram[(self.i + offset) as usize];
// @todo must switch the pixel values here
self.vram[(y * DISPLAY_WIDTH as u8 + x) as usize] = pixel;
offset += 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment