From e63da28388acce87bb62121505bf6cdf86da822e Mon Sep 17 00:00:00 2001 From: loudnl <LouDnl@users.noreply.github.com> Date: Sun, 17 Nov 2024 19:58:00 +0100 Subject: [PATCH] Update config struct --- src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.h b/src/config.h index e7ac457..2a06e1c 100644 --- a/src/config.h +++ b/src/config.h @@ -72,13 +72,13 @@ typedef struct Config { { bool enabled : 1; /* enable / disable this socket */ bool dualsid : 1; /* enable / disable dual SID support for this socket */ - uint8_t sidtype; /* 0 = empty, 1 = 6581, 2 = 8085, 3 = SKPico or other clone */ + uint8_t sidtype; /* 0 = empty, 1 = SKPico or other clone, 2 = MOS6581, 3 = MOS8085 */ } socketOne; /* 1 */ struct { bool enabled : 1; /* enable / disable this socket */ bool dualsid : 1; /* enable / disable dual SID support for this socket */ bool act_as_one : 1; /* act as socket 1 */ - uint8_t sidtype; /* 0 = empty, 1 = 6581, 2 = 8085, 3 = SKPico or other clone */ + uint8_t sidtype; /* 0 = empty, 1 = SKPico or other clone, 2 = MOS6581, 3 = MOS8085 */ } socketTwo; /* 2 */ struct { bool enabled : 1;