aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ppu.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ppu.rs b/src/ppu.rs
index 9938373..c0f5379 100644
--- a/src/ppu.rs
+++ b/src/ppu.rs
@@ -179,11 +179,9 @@ impl<'a> PPU<'a> {
self.oamaddr = self.oamaddr.wrapping_add(1);
}
}
- /*
cpu.cycle += 1;
cpu.cycle += cpu.cycle & 1;
cpu.cycle += 512;
- */
}
#[inline(always)] fn get_spritesize(&self) -> u8 {(self.ppuctl >> 5) & 1}