diff options
-rw-r--r-- | sound/softsynth/cms.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sound/softsynth/cms.cpp b/sound/softsynth/cms.cpp index 271268a6d9..18eb663ca7 100644 --- a/sound/softsynth/cms.cpp +++ b/sound/softsynth/cms.cpp @@ -27,6 +27,7 @@ #include "common/textconsole.h" #include "common/translation.h" +#include "common/debug.h" // CMS/Gameblaster Emulation taken from DosBox @@ -338,8 +339,10 @@ void CMSEmulator::portWriteIntern(int chip, int offset, int data) { } break; - default: /* Error! */ - error("CMS Unkown write to reg %x with %x",reg, data); + default: + // The CMS allows all registers to be written, so we just output some debug + // message here + debug(5, "CMS Unkown write to reg %x with %x",reg, data); } } |