summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2203.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ym2203.cpp')
-rw-r--r--src/devices/sound/ym2203.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/ym2203.cpp b/src/devices/sound/ym2203.cpp
index 290dad40248..9d3f01261c1 100644
--- a/src/devices/sound/ym2203.cpp
+++ b/src/devices/sound/ym2203.cpp
@@ -80,7 +80,7 @@ u8 ym2203_device::read(offs_t offset)
u8 result = 0;
switch (offset & 1)
{
- case 0: // status port
+ case 0: // status port
result = m_opn.status();
break;
@@ -102,7 +102,7 @@ void ym2203_device::write(offs_t offset, u8 value)
{
switch (offset & 1)
{
- case 0: // address port
+ case 0: // address port
m_address = value;
if (m_address < 0x10)
{