diff options
author | Travis Howell | 2006-01-14 08:54:56 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-14 08:54:56 +0000 |
commit | b49ebb5be0e8829cf158c03bf8a60d46a949cb0b (patch) | |
tree | 70540b83139fbd059aeffd73e1bb05c99cbc58ac | |
parent | 987c653ad1ab77e40dfe8d7474b803d7d473d86a (diff) | |
download | scummvm-rg350-b49ebb5be0e8829cf158c03bf8a60d46a949cb0b.tar.gz scummvm-rg350-b49ebb5be0e8829cf158c03bf8a60d46a949cb0b.tar.bz2 scummvm-rg350-b49ebb5be0e8829cf158c03bf8a60d46a949cb0b.zip |
Switch warning to debug message.
svn-id: r20014
-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 5146b67913..de50b37c2e 100644 --- a/scumm/instrument.cpp +++ b/scumm/instrument.cpp @@ -393,7 +393,7 @@ Instrument_Roland::Instrument_Roland (byte *data) { 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 (0, "MT-32 instrument \"%s\" not supported yet", _instrument_name); _instrument_name[0] = '\0'; } } |