diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-09-09 13:42:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 13:42:32 -0400 |
commit | 4d9614826c565c4ad22da1c988034ff2bff4001a (patch) | |
tree | 60650bf82207f63ff387e3855f88bae86e715325 /arm9/lib/src/MI_dma.c | |
parent | 8aba1bb4d0cb579bae4d797588c3ca85466b6e20 (diff) | |
parent | 85cf49ed0d9d8837e6e5dc9537b0c77a2f966f13 (diff) |
Merge pull request #284 from red031000/master
arm9 MI_dma_card and MI_dma_hblank
Diffstat (limited to 'arm9/lib/src/MI_dma.c')
-rw-r--r-- | arm9/lib/src/MI_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/lib/src/MI_dma.c b/arm9/lib/src/MI_dma.c index 565b1ef6..f322f87f 100644 --- a/arm9/lib/src/MI_dma.c +++ b/arm9/lib/src/MI_dma.c @@ -258,8 +258,8 @@ ARM_FUNC void MIi_CheckAnotherAutoDMA(u32 dmaNo, u32 dmaType) timing = dmaCnt & 0x38000000; if (timing == dmaType - || (timing == 0x8000000 && dmaType == 0x10000000) - || (timing == 0x10000000 && dmaType == 0x8000000)) + || (timing == 0x8000000 && dmaType == MI_DMA_TIMING_H_BLANK) + || (timing == MI_DMA_TIMING_H_BLANK && dmaType == 0x8000000)) { continue; } |