diff options
author | 2016-04-04 23:46:44 -0400 | |
---|---|---|
committer | 2016-04-04 23:46:44 -0400 | |
commit | ee12b7d2f74834cb9ca9dd8d6de7ba9d8c1f30e1 (patch) | |
tree | 18feb0ad0b3c6872533c73964440eb7f626a4174 /src/devices/cpu/mips/mips3.cpp | |
parent | 1046be89db453886ee98b72c846f6e42e8da3cfa (diff) |
Revert software-installed slot/image options when changing software
- Remove emu.h's stealth include of emuopts.h through mconfig.h; reduce dependency on emuopts.h in other headers and source files.
- MCFG_CPU_FORCE_NO_DRC is now a CPU configuration parameter rather than a global one; it still works to override the -drc option setting.
Diffstat (limited to 'src/devices/cpu/mips/mips3.cpp')
-rw-r--r-- | src/devices/cpu/mips/mips3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mips/mips3.cpp b/src/devices/cpu/mips/mips3.cpp index 20d82bd3725..279f9404c50 100644 --- a/src/devices/cpu/mips/mips3.cpp +++ b/src/devices/cpu/mips/mips3.cpp @@ -316,7 +316,7 @@ void mips3_device::check_irqs() void mips3_device::device_start() { - m_isdrc = (mconfig().options().drc() && !mconfig().m_force_no_drc) ? true : false; + m_isdrc = allow_drc(); /* allocate the implementation-specific state from the full cache */ m_core = (internal_mips3_state *)m_cache.alloc_near(sizeof(internal_mips3_state)); |