Skip to content

Commit

Permalink
Update config struct
Browse files Browse the repository at this point in the history
  • Loading branch information
LouDnl committed Nov 17, 2024
1 parent 7afcf98 commit e63da28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e63da28

Please sign in to comment.