diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-06-03 23:44:11 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-06-03 23:44:11 -0700 |
commit | 7b44b84b4a6f5a3601974a8f70f762e22c512c42 (patch) | |
tree | d182b162bd13b5411ee10eff85b8463b885dd070 /ym2612.c | |
parent | 8bd4d9e1e46a0e4277e61a7c999de9423df8ef92 (diff) |
Fix modulation shift value
Diffstat (limited to 'ym2612.c')
-rw-r--r-- | ym2612.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ void ym_init(ym2612_context * context, uint32_t sample_rate, uint32_t master_clo } #define YM_VOLUME_DIVIDER 2 -#define YM_MOD_SHIFT 4 +#define YM_MOD_SHIFT 1 void ym_run(ym2612_context * context, uint32_t to_cycle) { |