diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-04-02 00:58:42 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-04-02 00:58:42 -0700 |
commit | 780febbc0e17960dbea563a9a1b610829ec2ae0b (patch) | |
tree | 873071a527ddf4ea8c707a2485ffaa9c967816a1 /vgmplay.c | |
parent | 2cdb078be7a81ef681709fd6a5ae70c154a674f6 (diff) |
Fix vgmplay
Diffstat (limited to 'vgmplay.c')
-rw-r--r-- | vgmplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -108,10 +108,10 @@ int main(int argc, char ** argv) uint32_t lowpass_cutoff = lowpass_cutoff_str ? atoi(lowpass_cutoff_str) : 3390; ym2612_context y_context; - ym_init(&y_context, render_sample_rate(), MCLKS_NTSC, MCLKS_PER_YM, render_audio_buffer(), opts, lowpass_cutoff); + ym_init(&y_context, MCLKS_NTSC, MCLKS_PER_YM, opts); psg_context p_context; - psg_init(&p_context, render_sample_rate(), MCLKS_NTSC, MCLKS_PER_PSG, render_audio_buffer(), lowpass_cutoff); + psg_init(&p_context, MCLKS_NTSC, MCLKS_PER_PSG); FILE * f = fopen(argv[1], "rb"); vgm_header header; |