aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-06-06 12:39:06 +0200
committerWillem Jan Palenstijn2011-06-06 12:39:06 +0200
commit5da1427d0cb6578d29512279614a744b49f346d6 (patch)
tree3b435c18462ad7eb96067de5d6a8d7398db99572 /audio/softsynth
parentb2a1566860ee21cd4bfe7f26ee43f80927fc677a (diff)
downloadscummvm-rg350-5da1427d0cb6578d29512279614a744b49f346d6.tar.gz
scummvm-rg350-5da1427d0cb6578d29512279614a744b49f346d6.tar.bz2
scummvm-rg350-5da1427d0cb6578d29512279614a744b49f346d6.zip
AUDIO: Tweak warning text
Diffstat (limited to 'audio/softsynth')
-rw-r--r--audio/softsynth/mt32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp
index 2ffce306f1..ad80af041e 100644
--- a/audio/softsynth/mt32.cpp
+++ b/audio/softsynth/mt32.cpp
@@ -561,7 +561,7 @@ MusicDevices MT32EmuMusicPlugin::getDevices() const {
bool MT32EmuMusicPlugin::checkDevice(MidiDriver::DeviceHandle) const {
if (!((Common::File::exists("MT32_CONTROL.ROM") && Common::File::exists("MT32_PCM.ROM")) ||
(Common::File::exists("CM32L_CONTROL.ROM") && Common::File::exists("CM32L_PCM.ROM")))) {
- warning("The MT-32 emulator requires the following 2 files (not bundled with ScummVM:\n either 'MT32_CONTROL.ROM' and 'MT32_PCM.ROM' or 'CM32L_CONTROL.ROM' and 'CM32L_PCM.ROM'");
+ warning("The MT-32 emulator requires the following 2 files (not bundled with ScummVM:\n either 'MT32_CONTROL.ROM' and 'MT32_PCM.ROM', or 'CM32L_CONTROL.ROM' and 'CM32L_PCM.ROM'");
return false;
}