From 1d9a4f91011bca3c2bb3fba98eda2ffc130bb863 Mon Sep 17 00:00:00 2001 From: waltje Date: Sun, 8 Oct 2017 21:22:59 -0400 Subject: [PATCH] PAS16 timer fix. --- src/sound/snd_pas16.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sound/snd_pas16.c b/src/sound/snd_pas16.c index 9e644cf0f..3d44435a8 100644 --- a/src/sound/snd_pas16.c +++ b/src/sound/snd_pas16.c @@ -122,7 +122,7 @@ typedef struct pas16_t struct { uint32_t l[3]; - int c[3]; + int64_t c[3]; uint8_t m[3]; uint8_t ctrl, ctrls[2]; int wp, rm[3], wm[3]; @@ -130,7 +130,7 @@ typedef struct pas16_t int thit[3]; int delay[3]; int rereadlatch[3]; - int enable[3]; + int64_t enable[3]; } pit; opl_t opl;