diff options
author | Jamieson Christian | 2003-05-15 00:27:19 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-05-15 00:27:19 +0000 |
commit | 94f07fd342856a211edce0ee0d4ecb05c83fb0cb (patch) | |
tree | 7c4c8b191be87cd5b2541c147096bfce044f270a | |
parent | 979b4654152e0b8ac2a6282844700d1d098a3dbf (diff) | |
download | scummvm-rg350-94f07fd342856a211edce0ee0d4ecb05c83fb0cb.tar.gz scummvm-rg350-94f07fd342856a211edce0ee0d4ecb05c83fb0cb.tar.bz2 scummvm-rg350-94f07fd342856a211edce0ee0d4ecb05c83fb0cb.zip |
Changed custom MT-32 instrument warning to debug output
svn-id: r7521
-rw-r--r-- | scumm/instrument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/instrument.cpp b/scumm/instrument.cpp index 169ab67e35..f0bfdb082d 100644 --- a/scumm/instrument.cpp +++ b/scumm/instrument.cpp @@ -404,7 +404,7 @@ void Instrument_Roland::saveOrLoad (Serializer *s) { memcpy (&_instrument_name, &_instrument.common.name, sizeof (_instrument.common.name)); _instrument_name[10] = '\0'; if (!NATIVE_MT32 && getEquivalentGM() >= 128) { - warning ("MT-32 instrument \"%s\" not supported yet", _instrument_name); + debug (2, "MT-32 custom instrument \"%s\" not supported", _instrument_name); _instrument_name[0] = '\0'; } } // end if |