diff options
author | Willem Jan Palenstijn | 2013-02-23 22:07:32 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2013-02-23 22:07:32 +0100 |
commit | 2d1fd3b5549fc972b342f3292c77d562b401a91a (patch) | |
tree | 1edf36d311b672dace89e8199263b5b84a076eee /engines/scumm | |
parent | 21ed47ce1366ee6b9b861391faeccc0eb2c5afb3 (diff) | |
download | scummvm-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.cpp | 4 |
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); } } |