diff options
author | 2024-12-31 15:57:42 +0100 | |
---|---|---|
committer | 2024-12-31 15:57:42 +0100 | |
commit | 355e240b34625d7dd79c58abba0e724737e0e4df (patch) | |
tree | fd50b5696e5125a7f1d8e36612fd2a1d6a6ac9e7 | |
parent | 0e0082f530f5b6c6e59129e73ee0a8e94671ed4a (diff) |
3dom2: remove hack believed to have become obsolete, it caused extreme slowdowns during loading [David Haywood]
-rw-r--r-- | src/mame/konami/3dom2.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/konami/3dom2.cpp b/src/mame/konami/3dom2.cpp index 02987cecfee..24663e49324 100644 --- a/src/mame/konami/3dom2.cpp +++ b/src/mame/konami/3dom2.cpp @@ -1920,11 +1920,6 @@ TIMER_CALLBACK_MEMBER(m2_cde_device::next_dma) const uint32_t ch = (uint32_t)param; dma_channel &dma_ch = m_dma[ch]; - // TODO: HACK! -#if 1 - m_cpu1->set_cache_dirty(); -#endif - if (dma_ch.m_ccnt != 0) throw emu_fatalerror("m2_cde_device::next_dma: DMA count non-zero during next DMA"); |