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 4de6df9 commit 810f915Copy full SHA for 810f915
src/vga/mod.rs
@@ -818,7 +818,7 @@ impl ScanlineTimingBuffer {
818
// Back porch. Adjusted by a few clocks to account for interrupt +
819
// PIO SM start latency.
820
Self::make_timing(
821
- (timings.2 * Self::CLOCKS_PER_PIXEL) - 5,
+ (timings.2 * Self::CLOCKS_PER_PIXEL) - 10,
822
hsync.disabled(),
823
vsync.disabled(),
824
RaiseIrq::None,
@@ -827,7 +827,7 @@ impl ScanlineTimingBuffer {
827
// moving. Adjusted to compensate for changes made to previous
828
// period to ensure scan-line remains at correct length.
829
830
- (timings.3 * Self::CLOCKS_PER_PIXEL) + 5,
+ (timings.3 * Self::CLOCKS_PER_PIXEL) + 10,
831
832
833
RaiseIrq::Irq0,
0 commit comments