summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ticket.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/devices/machine/ticket.cpp
parent25472091b626bd01ef47f11389a4b2ebe0fc0008 (diff)
destaticify initializations (nw) (#3289)
* destaticify initializations (nw) * fix this->set_screen (nw)
Diffstat (limited to 'src/devices/machine/ticket.cpp')
-rw-r--r--src/devices/machine/ticket.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/devices/machine/ticket.cpp b/src/devices/machine/ticket.cpp
index 2180d4fd17e..4df285d7650 100644
--- a/src/devices/machine/ticket.cpp
+++ b/src/devices/machine/ticket.cpp
@@ -64,36 +64,6 @@ ticket_dispenser_device::~ticket_dispenser_device()
//**************************************************************************
-// CONFIGURATION HELPERS
-//**************************************************************************
-
-//-------------------------------------------------
-// static_set_period - configure the clock period
-// for dispensing
-//-------------------------------------------------
-
-void ticket_dispenser_device::static_set_period(device_t &device, const attotime &period)
-{
- downcast<ticket_dispenser_device &>(device).m_period = period;
-}
-
-
-//-------------------------------------------------
-// static_set_senses - configure the senses of
-// the motor and status bits
-//-------------------------------------------------
-
-void ticket_dispenser_device::static_set_senses(device_t &device, uint8_t motor_sense, uint8_t status_sense, bool hopper_type)
-{
- ticket_dispenser_device &ticket = downcast<ticket_dispenser_device &>(device);
- ticket.m_motor_sense = motor_sense;
- ticket.m_status_sense = status_sense;
- ticket.m_hopper_type = hopper_type;
-}
-
-
-
-//**************************************************************************
// READ/WRITE HANDLERS
//**************************************************************************