summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.cpp
diff options
context:
space:
mode:
author wilbertpol <wilbertpol@users.noreply.github.com>2018-03-03 18:18:08 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2018-03-04 04:18:08 +1100
commit3b923d59ccb8d2d8e386392518450006f8e644fe (patch)
tree73c48568e76d69edbde9f96a3f57d173dd05a747 /src/emu/devcpu.cpp
parent25472091b626bd01ef47f11389a4b2ebe0fc0008 (diff)
destaticify initializations (nw) (#3289)
* destaticify initializations (nw) * fix this->set_screen (nw)
Diffstat (limited to 'src/emu/devcpu.cpp')
-rw-r--r--src/emu/devcpu.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/emu/devcpu.cpp b/src/emu/devcpu.cpp
index dccde97c14c..e75b621c6f0 100644
--- a/src/emu/devcpu.cpp
+++ b/src/emu/devcpu.cpp
@@ -42,17 +42,6 @@ cpu_device::~cpu_device()
//-------------------------------------------------
-// static_set_force_no_drc - configuration helper
-// to disable DRC
-//-------------------------------------------------
-
-void cpu_device::static_set_force_no_drc(device_t &device, bool value)
-{
- downcast<cpu_device &>(device).m_force_no_drc = value;
-}
-
-
-//-------------------------------------------------
// allow_drc - return true if DRC is allowed
//-------------------------------------------------