summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2018-08-09 07:53:30 -0400
committer GitHub <noreply@github.com>2018-08-09 07:53:30 -0400
commit6b9ce1a85f65794e3b5a095c99716955d9bb5e2f (patch)
tree16b9d0f62fa59582fee8747b611f7013db4d7bb2
parent1c6af029ce64783fc274f7d02d54511020282069 (diff)
parent07192b386d1081c1e5cf35faecf9baa02c04b0aa (diff)
Merge pull request #3840 from cam900/patch-46
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;