summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2608.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ym2608.cpp')
-rw-r--r--src/devices/sound/ym2608.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/ym2608.cpp b/src/devices/sound/ym2608.cpp
index 35cdff227c8..bd83dfb873c 100644
--- a/src/devices/sound/ym2608.cpp
+++ b/src/devices/sound/ym2608.cpp
@@ -54,7 +54,7 @@ u8 ym2608_device::read(offs_t offset)
u8 result = 0;
switch (offset & 3)
{
- case 0: // status port, YM2203 compatible
+ case 0: // status port, YM2203 compatible
result = m_fm.status() & (fm_engine::STATUS_TIMERA | fm_engine::STATUS_TIMERB | fm_engine::STATUS_BUSY);
break;
@@ -65,7 +65,7 @@ u8 ym2608_device::read(offs_t offset)
result = 1; // ID code
break;
- case 2: // status port, extended
+ case 2: // status port, extended
m_stream->update();
result = combine_status();
break;