summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/cassette.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
commit0825ce4f3b8eaab42e3682f7d01d97ce6ea0416d (patch)
tree24de29ca8cbba68740ec8cd26f15209f19c2bf0b /src/devices/imagedev/cassette.cpp
parentd1d8a66ab196156ab22ba1059d714cd040b44ab6 (diff)
Cleanups and version bumpmame0168
Diffstat (limited to 'src/devices/imagedev/cassette.cpp')
-rw-r--r--src/devices/imagedev/cassette.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/imagedev/cassette.cpp b/src/devices/imagedev/cassette.cpp
index 7b58d3e01cb..0df32b0ef9d 100644
--- a/src/devices/imagedev/cassette.cpp
+++ b/src/devices/imagedev/cassette.cpp
@@ -30,14 +30,14 @@ const device_type CASSETTE = &device_creator<cassette_image_device>;
cassette_image_device::cassette_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, CASSETTE, "Cassette", tag, owner, clock, "cassette_image", __FILE__),
- device_image_interface(mconfig, *this),
+ device_image_interface(mconfig, *this),
m_cassette(NULL),
- m_state(CASSETTE_STOPPED),
- m_position(0),
- m_position_time(0),
- m_value(0),
- m_channel(0),
- m_speed(0),
+ m_state(CASSETTE_STOPPED),
+ m_position(0),
+ m_position_time(0),
+ m_value(0),
+ m_channel(0),
+ m_speed(0),
m_direction(0),
m_formats(cassette_default_formats),
m_create_opts(NULL),