summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/tms36xx.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-07-22 06:21:54 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-07-22 06:21:54 +0000
commit79246ab9172f61178139b4b7974debba8fb7c5f8 (patch)
tree6365530c8cf287ea3b7752c3c45c8c6f8e4c68ae /src/emu/sound/tms36xx.h
parent5d7e1fcc62a7f9dd5441eaccbc274f9327efcf00 (diff)
More cleanups, there is issue with srcclean that needs to be taken care as well, just doing now what we can
Diffstat (limited to 'src/emu/sound/tms36xx.h')
-rw-r--r--src/emu/sound/tms36xx.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/sound/tms36xx.h b/src/emu/sound/tms36xx.h
index 8cdf5f2c798..a38552592a1 100644
--- a/src/emu/sound/tms36xx.h
+++ b/src/emu/sound/tms36xx.h
@@ -44,8 +44,8 @@ public:
tms36xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~tms36xx_device() { }
- static void set_subtype(device_t &device, int type)
- {
+ static void set_subtype(device_t &device, int type)
+ {
tms36xx_device &dev = downcast<tms36xx_device &>(device);
switch (type)
{
@@ -63,9 +63,9 @@ public:
break;
}
}
- static void set_tune_speed(device_t &device, double speed)
- {
- downcast<tms36xx_device &>(device).m_speed = (speed > 0) ? TMS36XX_VMAX / speed : TMS36XX_VMAX;
+ static void set_tune_speed(device_t &device, double speed)
+ {
+ downcast<tms36xx_device &>(device).m_speed = (speed > 0) ? TMS36XX_VMAX / speed : TMS36XX_VMAX;
}
static void set_decays(device_t &device, double decay_0, double decay_1, double decay_2, double decay_3, double decay_4, double decay_5)
{
@@ -77,7 +77,7 @@ public:
dev.m_decay_time[4] = decay_4;
dev.m_decay_time[5] = decay_5;
}
-
+
protected:
// device-level overrides
virtual void device_start();