From 11d8b5513944f2e539725119f34503a33309d5ed Mon Sep 17 00:00:00 2001 From: ekeeke31 Date: Wed, 13 Jan 2010 22:07:05 +0000 Subject: [PATCH] fixed Z80/PSG synchronization --- source/membnk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/membnk.c b/source/membnk.c index 417a578..2f02eb9 100644 --- a/source/membnk.c +++ b/source/membnk.c @@ -195,7 +195,7 @@ void zbank_write_vdp(uint32 address, uint32 data) case 0x10: /* PSG */ case 0x14: - if (address & 1) psg_write(0, data); + if (address & 1) psg_write(1, data); else zbank_unused_w(address, data); return;