We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a1112 commit 984c753Copy full SHA for 984c753
1 file changed
src/gpu.rs
@@ -987,8 +987,8 @@ impl Ticker for Gpu {
987
// Mode 3: Pixel transfer (dots 80-455, but may end early due to sprite penalty).
988
if self.dots <= (80 + 172 + ((self.sx as u32 % 8 + 3) / 4) * 4) - 4 + self.pena {
989
self.stat.data = (self.stat.data & !0x03) | 3;
990
- // Mode 3 has no STAT interrupt source; the signal may fall to LOW here
991
- // unless LYC=LY keeps it high. Update to track any falling edge.
+ // Mode 3 has no STAT interrupt source; the signal may fall to LOW here unless LYC=LY keeps it high.
+ // Update to track any falling edge.
992
self.sigq_update();
993
continue;
994
}
0 commit comments