aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorChris Apers2007-02-18 18:03:57 +0000
committerChris Apers2007-02-18 18:03:57 +0000
commit17b14e44c76ee7630d45ee21c11412f9d1948a96 (patch)
tree848823c5431168847edf16feb831684ff95ef52c /sound
parent619d8e87f15d43fc71b2071ebb5a84ce37e3115b (diff)
downloadscummvm-rg350-17b14e44c76ee7630d45ee21c11412f9d1948a96.tar.gz
scummvm-rg350-17b14e44c76ee7630d45ee21c11412f9d1948a96.tar.bz2
scummvm-rg350-17b14e44c76ee7630d45ee21c11412f9d1948a96.zip
Correct warned class name
svn-id: r25694
Diffstat (limited to 'sound')
-rw-r--r--sound/midiparser_smf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/midiparser_smf.cpp b/sound/midiparser_smf.cpp
index 746624d35d..400215f250 100644
--- a/sound/midiparser_smf.cpp
+++ b/sound/midiparser_smf.cpp
@@ -126,7 +126,7 @@ void MidiParser_SMF::parseNextEvent(EventInfo &info) {
break;
default:
- warning("MidiParser_XMIDI::parseNextEvent: Unsupported event code %x", info.event);
+ warning("MidiParser_SMF::parseNextEvent: Unsupported event code %x", info.event);
}
}
}