diff options
author | 2018-09-30 10:41:34 +0900 | |
---|---|---|
committer | 2018-09-30 03:41:34 +0200 | |
commit | 51f02ffaf21b55b1d9d4a9b7af0166e6191f5812 (patch) | |
tree | d657a93d39e0a926792fd4f0451a96ff5cf9d4ae /src/devices/sound/iremga20.h | |
parent | b757576f35552b16ef2d11bc2179e5170b37d3eb (diff) |
iremga20.cpp : Fix frequency update algorithm (#4040)
* iremga20.cpp : Fix frequency update algorithm
* iremga20.cpp : Fix naming
* iremga20.cpp : Fix method
iremga20.h : Fix value name
Diffstat (limited to 'src/devices/sound/iremga20.h')
-rw-r--r-- | src/devices/sound/iremga20.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/iremga20.h b/src/devices/sound/iremga20.h index cd85b295f5a..e5b250a8f0a 100644 --- a/src/devices/sound/iremga20.h +++ b/src/devices/sound/iremga20.h @@ -45,7 +45,7 @@ private: { uint32_t rate; uint32_t pos; - uint32_t frac; + uint32_t counter; uint32_t end; uint32_t volume; uint32_t play; |