summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-03-25 02:03:24 +1100
committer Vas Crabb <vas@vastheman.com>2018-03-25 02:03:24 +1100
commit08dde5eb0acb30b68b403a2b9ad2fd503067f2bd (patch)
tree9ea8ba7c97d124aa4f7600ebb183667609f81224 /src/devices/sound
parent8142f24c4307439397ffb2c01fab76e6f2c1b95e (diff)
srcclean and regenerate localisations (nw)
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/c352.cpp2
-rw-r--r--src/devices/sound/c352.h2
-rw-r--r--src/devices/sound/es8712.cpp4
-rw-r--r--src/devices/sound/es8712.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/sound/c352.cpp b/src/devices/sound/c352.cpp
index 015f132d229..ea22dbf50f6 100644
--- a/src/devices/sound/c352.cpp
+++ b/src/devices/sound/c352.cpp
@@ -298,7 +298,7 @@ void c352_device::device_start()
}
for(int i=0;i<128;i++)
m_mulawtab[i+128] = (~m_mulawtab[i])&0xffe0;
-
+
// register save state info
for (i = 0; i < 32; i++)
{
diff --git a/src/devices/sound/c352.h b/src/devices/sound/c352.h
index 7a55bb45905..5715bf653cf 100644
--- a/src/devices/sound/c352.h
+++ b/src/devices/sound/c352.h
@@ -105,7 +105,7 @@ private:
int m_divider;
c352_voice_t m_c352_v[32];
-
+
int16_t m_mulawtab[256];
uint16_t m_random;
diff --git a/src/devices/sound/es8712.cpp b/src/devices/sound/es8712.cpp
index cc63781dbac..3c15dc986e2 100644
--- a/src/devices/sound/es8712.cpp
+++ b/src/devices/sound/es8712.cpp
@@ -11,7 +11,7 @@
* Current implementation is based from :
* gcpinbal.cpp, by David Graves & R. Belmont.
* splitted by cam900
- *
+ *
* It seems that the ES8712 is actually a programmable counter which can stream
* ADPCM samples when hooked up to a ROM and a M5205 or M6585 (whose VCK signal
* can drive the counter). Neither of these seem to be used in conjunction with
@@ -233,4 +233,4 @@ WRITE_LINE_MEMBER(es8712_device::msm_int)
if (m_adpcm_trigger == 0)
m_base_offset++;
}
-} \ No newline at end of file
+}
diff --git a/src/devices/sound/es8712.h b/src/devices/sound/es8712.h
index 2ab82aedc5b..30665b9fdc3 100644
--- a/src/devices/sound/es8712.h
+++ b/src/devices/sound/es8712.h
@@ -47,7 +47,7 @@ public:
DECLARE_READ8_MEMBER(read);
DECLARE_WRITE8_MEMBER(msm_w);
DECLARE_WRITE_LINE_MEMBER(msm_int);
-
+
void play();
protected:
@@ -63,7 +63,7 @@ private:
required_device<hct157_device> m_adpcm_select;
optional_device<msm5205_device> m_msm;
-
+
// device callbacks
devcb_write_line m_reset_handler;
devcb_write8 m_msm_write_cb;