summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2018-08-09 18:55:09 +0900
committer GitHub <noreply@github.com>2018-08-09 18:55:09 +0900
commit07192b386d1081c1e5cf35faecf9baa02c04b0aa (patch)
treef0be0624335fe4c61ee7c7a13bd208307d7fad71
parent1e1211a436e39af47ebb03bdd1471405bf7aef83 (diff)
zsg2.cpp : Typo
-rw-r--r--src/devices/sound/zsg2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/zsg2.cpp b/src/devices/sound/zsg2.cpp
index 7a06ac072ef..42107792265 100644
--- a/src/devices/sound/zsg2.cpp
+++ b/src/devices/sound/zsg2.cpp
@@ -175,7 +175,7 @@ int16_t *zsg2_device::prepare_samples(uint32_t offset)
m_mem_copy[offset] = block;
offset *= 4;
- // decompress 32 byte block to 4 16-bit samples
+ // decompress 32 bit block to 4 16-bit samples
// 42222222 51111111 60000000 ssss3333
m_full_samples[offset|0] = block >> 8 & 0x7f;
m_full_samples[offset|1] = block >> 16 & 0x7f;