diff options
Diffstat (limited to 'src/mame/drivers/nds.cpp')
-rw-r--r-- | src/mame/drivers/nds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/nds.cpp b/src/mame/drivers/nds.cpp index da6acaaa177..0e7086c74a5 100644 --- a/src/mame/drivers/nds.cpp +++ b/src/mame/drivers/nds.cpp @@ -810,7 +810,7 @@ void nds_state::dma_exec(int ch) #endif // printf("settng DMA timer %d for %d cycs (tmr %x)\n", ch, cnt, (uint32_t)m_dma_timer[ch]); // m_dma_timer[ch]->adjust(ATTOTIME_IN_CYCLES(0, cnt), ch); - dma_complete(nullptr, ch); + dma_complete(ch); } TIMER_CALLBACK_MEMBER(nds_state::handle_irq) |