summaryrefslogtreecommitdiff
path: root/psg.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-05-29 00:57:19 -0700
committerMike Pavone <pavone@retrodev.com>2013-05-29 00:57:19 -0700
commit54f3fab8efc17a607439cb61e82b1e640f36c99a (patch)
treea679ccd977607a939b0ecd734fc9ba5a5e7b3be4 /psg.c
parent1d5e794755a615e3627550f8068213e9a23b17e7 (diff)
Incredibly broken YM2612 support plus a fix to Z80 bus request
Diffstat (limited to 'psg.c')
-rw-r--r--psg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psg.c b/psg.c
index e035182..1052436 100644
--- a/psg.c
+++ b/psg.c
@@ -103,7 +103,7 @@ void psg_run(psg_context * context, uint32_t cycles)
}
context->audio_buffer[context->buffer_pos++] = acc;
if (context->buffer_pos == context->samples_frame) {
- render_wait_audio(context);
+ render_wait_psg(context);
}
}
context->cycles++;