aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2013-02-23 22:07:32 +0100
committerWillem Jan Palenstijn2013-02-23 22:07:32 +0100
commit2d1fd3b5549fc972b342f3292c77d562b401a91a (patch)
tree1edf36d311b672dace89e8199263b5b84a076eee /engines/scumm
parent21ed47ce1366ee6b9b861391faeccc0eb2c5afb3 (diff)
downloadscummvm-rg350-2d1fd3b5549fc972b342f3292c77d562b401a91a.tar.gz
scummvm-rg350-2d1fd3b5549fc972b342f3292c77d562b401a91a.tar.bz2
scummvm-rg350-2d1fd3b5549fc972b342f3292c77d562b401a91a.zip
ALL: Fix typo (existant->existent)
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/imuse/imuse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/imuse/imuse.cpp b/engines/scumm/imuse/imuse.cpp
index b69ce552bc..a875702383 100644
--- a/engines/scumm/imuse/imuse.cpp
+++ b/engines/scumm/imuse/imuse.cpp
@@ -1741,10 +1741,10 @@ void IMuseInternal::copyGlobalInstrument(byte slot, Instrument *dest) {
// In case we have an valid instrument set up, copy it to the part.
_global_instruments[slot].copy_to(dest);
} else if (_pcSpeaker) {
- debug(0, "Trying to use non-existant global PC Speaker instrument %d", slot);
+ debug(0, "Trying to use non-existent global PC Speaker instrument %d", slot);
dest->pcspk(defaultInstr);
} else {
- debug(0, "Trying to use non-existant global AdLib instrument %d", slot);
+ debug(0, "Trying to use non-existent global AdLib instrument %d", slot);
dest->adlib(defaultInstr);
}
}