diff options
author | Tim Gates <tim.gates@iress.com> | 2020-12-19 15:59:26 +1100 |
---|---|---|
committer | Tim Gates <tim.gates@iress.com> | 2020-12-19 15:59:26 +1100 |
commit | 1aab00c7b9c27d9fca7e14c53bb93f4b2342936b (patch) | |
tree | 0ecc5daace01d34c2dbdeedbf2d69f99e23df152 /src | |
parent | 9e331fb681ec5ebb46fbf537289f96ca572438ea (diff) |
docs: fix simple typo, occurr -> occur
There is a small typo in src/scanline_effect.c.
Should read `occur` rather than `occurr`.
Diffstat (limited to 'src')
-rw-r--r-- | src/scanline_effect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanline_effect.c b/src/scanline_effect.c index b4de0689f..0e88799de 100644 --- a/src/scanline_effect.c +++ b/src/scanline_effect.c @@ -92,7 +92,7 @@ void ScanlineEffect_InitHBlankDmaTransfer(void) { DmaStop(0); // Set DMA to copy to dest register on each HBlank for the next frame. - // The HBlank DMA transfers do not occurr during VBlank, so the transfer + // The HBlank DMA transfers do not occur during VBlank, so the transfer // will begin on the HBlank after the first scanline DmaSet(0, gScanlineEffect.dmaSrcBuffers[gScanlineEffect.srcBuffer], gScanlineEffect.dmaDest, gScanlineEffect.dmaControl); // Manually set the reg for the first scanline |