summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/meg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/meg.cpp')
-rw-r--r--src/devices/sound/meg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/meg.cpp b/src/devices/sound/meg.cpp
index 54bdc88902d..2a1f5846232 100644
--- a/src/devices/sound/meg.cpp
+++ b/src/devices/sound/meg.cpp
@@ -67,7 +67,7 @@ void meg_base_device::lfo_w(u8 reg, u16 value)
void meg_base_device::map_w(u8 reg, u16 value)
{
m_map[reg] = value;
- logerror("map %d: start = %06x size = %06x extra = %x\n", reg, (value & 0xff) << 10, 1 << (10 + ((value & 0x0700) >> 8)), (value & 0xf800) >> 11);
+ logerror("map %d: start = %06x size = %06x extra = %x\n", reg, (value & 0xff) << 10, 1 << (10 + ((value & 0x0700) >> 8)), (value & 0xf800) >> 11);
}
u64 meg_base_device::prg_r(u16 address) const