diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-05-01 13:36:14 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-05-01 13:36:14 -0700 |
commit | dfb5ea9cf695c24d24e451da24d384dd69634d43 (patch) | |
tree | 695a8cc1883a6fa919b2bbc0d22009f03fe96772 /ym2612.h | |
parent | 5be1df76921a1f7ad103dca3e7f731fa4a53d254 (diff) |
Made low pass filter frequency configurable
Diffstat (limited to 'ym2612.h')
-rw-r--r-- | ym2612.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ enum { REG_LR_AMS_PMS = 0xB4 }; -void ym_init(ym2612_context * context, uint32_t sample_rate, uint32_t master_clock, uint32_t clock_div, uint32_t sample_limit, uint32_t options); +void ym_init(ym2612_context * context, uint32_t sample_rate, uint32_t master_clock, uint32_t clock_div, uint32_t sample_limit, uint32_t options, uint32_t lowpass_cutoff); void ym_free(ym2612_context *context); void ym_adjust_master_clock(ym2612_context * context, uint32_t master_clock); void ym_run(ym2612_context * context, uint32_t to_cycle); |