summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/sp0250.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/sp0250.c')
-rw-r--r--src/emu/sound/sp0250.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/sound/sp0250.c b/src/emu/sound/sp0250.c
index 6eda5e6b7d3..9f9e250ab0a 100644
--- a/src/emu/sound/sp0250.c
+++ b/src/emu/sound/sp0250.c
@@ -73,7 +73,7 @@ static INT16 sp0250_gc(UINT8 v)
// Internal ROM to the chip, cf. manual
static const UINT16 coefs[128] =
{
- 0, 9, 17, 25, 33, 41, 49, 57, 65, 73, 81, 89, 97, 105, 113, 121,
+ 0, 9, 17, 25, 33, 41, 49, 57, 65, 73, 81, 89, 97, 105, 113, 121,
129, 137, 145, 153, 161, 169, 177, 185, 193, 201, 203, 217, 225, 233, 241, 249,
257, 265, 273, 281, 289, 297, 301, 305, 309, 313, 317, 321, 325, 329, 333, 337,
341, 345, 349, 353, 357, 361, 365, 369, 373, 377, 381, 385, 389, 393, 397, 401,
@@ -241,7 +241,7 @@ const device_type SP0250 = &device_creator<sp0250_device>;
sp0250_device::sp0250_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, SP0250, "SP0250", tag, owner, clock),
- device_sound_interface(mconfig, *this)
+ device_sound_interface(mconfig, *this)
{
m_token = global_alloc_clear(sp0250_state);
}
@@ -274,5 +274,3 @@ void sp0250_device::sound_stream_update(sound_stream &stream, stream_sample_t **
// should never get here
fatalerror("sound_stream_update called; not applicable to legacy sound devices\n");
}
-
-