chore: rename some symbols

This commit is contained in:
2021-04-04 01:31:31 -05:00
parent 4dd7a0d9ce
commit 777abd1c10
3 changed files with 14 additions and 13 deletions

View File

@@ -235,7 +235,7 @@ impl Bus {
self.ppu.pos.ly_compare = byte;
// Update Coincidence Flag
if self.ppu.stat.coincidence_intr() {
if self.ppu.stat.coincidence_int() {
let are_equal = self.ppu.pos.line_y == byte;
self.ppu.stat.set_coincidence(are_equal);
}