From d67be984687b7431892015d61fdc0db9bc184118 Mon Sep 17 00:00:00 2001 From: Natt Akuma Date: Sun, 26 Mar 2023 16:50:03 +0700 Subject: [PATCH] Add sample instrument to AY SysDefs It was not possible to select sampple instrument for these chips even though the engine has a PCM driver --- src/engine/sysDef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/sysDef.cpp b/src/engine/sysDef.cpp index 80c987e28..fbb718cb5 100644 --- a/src/engine/sysDef.cpp +++ b/src/engine/sysDef.cpp @@ -789,7 +789,7 @@ void DivEngine::registerSystems() { {"S1", "S2", "S3"}, {DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_PULSE}, {DIV_INS_AY, DIV_INS_AY, DIV_INS_AY}, - {}, + {DIV_INS_AMIGA, DIV_INS_AMIGA, DIV_INS_AMIGA}, {}, ayPostEffectHandlerMap ); @@ -870,7 +870,7 @@ void DivEngine::registerSystems() { {"S1", "S2", "S3"}, {DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_PULSE}, {DIV_INS_AY8930, DIV_INS_AY8930, DIV_INS_AY8930}, - {}, + {DIV_INS_AMIGA, DIV_INS_AMIGA, DIV_INS_AMIGA}, {}, ay8930PostEffectHandlerMap );