# HG changeset patch # User Matti Hamalainen # Date 1578265072 -7200 # Node ID ac6b5957b82be7d41eb5e8c6a8896a706c2e9639 # Parent 254828e9213ba2026f53e28b4eef2966e664dfb3 Oops, second and third SID chip models were being printed out as integers instead of strings. Fixed. diff -r 254828e9213b -r ac6b5957b82b sidinfo.c --- a/sidinfo.c Mon Jan 06 00:26:27 2020 +0200 +++ b/sidinfo.c Mon Jan 06 00:57:52 2020 +0200 @@ -89,8 +89,8 @@ { "Songs" , "Songs" , OTYPE_INT }, { "StartSong" , "Start song" , OTYPE_INT }, - { "SID2Model" , "2nd SID model" , OTYPE_INT }, - { "SID3Model" , "3rd SID model" , OTYPE_INT }, + { "SID2Model" , "2nd SID model" , OTYPE_STR }, + { "SID3Model" , "3rd SID model" , OTYPE_STR }, { "SID2Addr" , "2nd SID address" , OTYPE_INT }, { "SID3Addr" , "3rd SID address" , OTYPE_INT },