summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2015-08-15 19:55:12 -0400
committer Scott Stone <tafoid@gmail.com>2015-08-15 19:55:12 -0400
commit2bc33dac2b293b04b8929c3ccd07e5096031bcb4 (patch)
tree400cc74feddbae8408481b825d3c1e3de6f66ad3 /src
parentee761ff79b7df2f607bd3dc8e15357c2c34e21c7 (diff)
Fixed setname size for MSX Moonsound to fall within range for other setnames that require roms (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/bus/msx_cart/moonsound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/msx_cart/moonsound.c b/src/emu/bus/msx_cart/moonsound.c
index d2b222f07de..cdae9385815 100644
--- a/src/emu/bus/msx_cart/moonsound.c
+++ b/src/emu/bus/msx_cart/moonsound.c
@@ -20,7 +20,7 @@ const device_type MSX_CART_MOONSOUND = &device_creator<msx_cart_moonsound>;
msx_cart_moonsound::msx_cart_moonsound(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, MSX_CART_MOONSOUND, "MSX Cartridge - MoonSound", tag, owner, clock, "msx_cart_moonsound", __FILE__)
+ : device_t(mconfig, MSX_CART_MOONSOUND, "MSX Cartridge - MoonSound", tag, owner, clock, "msx_moonsound", __FILE__)
, msx_cart_interface(mconfig, *this)
, m_ymf278b(*this, "ymf278b")
{