From 07192b386d1081c1e5cf35faecf9baa02c04b0aa Mon Sep 17 00:00:00 2001 From: cam900 Date: Thu, 9 Aug 2018 18:55:09 +0900 Subject: zsg2.cpp : Typo --- src/devices/sound/zsg2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3