diff options
author | Eugene Sandulenko | 2016-10-31 07:07:49 -0700 |
---|---|---|
committer | GitHub | 2016-10-31 07:07:49 -0700 |
commit | 28345d7eb3ed14a25e72160ab17f4d17c57b2756 (patch) | |
tree | 472805c97faaf9889cfafe1bb712100df4f5365b /engines | |
parent | 22126a90d04c68ca4b058fd70aa12741a29383c3 (diff) | |
parent | f8388db32b26b1ca9ef109e1c0d83a04c052d9b5 (diff) | |
download | scummvm-rg350-28345d7eb3ed14a25e72160ab17f4d17c57b2756.tar.gz scummvm-rg350-28345d7eb3ed14a25e72160ab17f4d17c57b2756.tar.bz2 scummvm-rg350-28345d7eb3ed14a25e72160ab17f4d17c57b2756.zip |
Merge pull request #860 from a-detiste/master
JANITORIAL: Typos found by lintian
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/timer.cpp | 2 | ||||
-rw-r--r-- | engines/lab/console.cpp | 2 | ||||
-rw-r--r-- | engines/scumm/sound.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/timer.cpp b/engines/kyra/timer.cpp index edca3ef5bf..97e989ea38 100644 --- a/engines/kyra/timer.cpp +++ b/engines/kyra/timer.cpp @@ -90,7 +90,7 @@ void TimerManager::reset() { void TimerManager::addTimer(uint8 id, TimerFunc *func, int countdown, bool enabled) { Iterator timer = Common::find_if(_timers.begin(), _timers.end(), TimerEqual(id)); if (timer != _timers.end()) { - warning("Adding allready existing timer %d", id); + warning("Adding already existing timer %d", id); return; } diff --git a/engines/lab/console.cpp b/engines/lab/console.cpp index 20b1f5645b..a90c2605a7 100644 --- a/engines/lab/console.cpp +++ b/engines/lab/console.cpp @@ -81,7 +81,7 @@ bool Console::Cmd_DumpSceneResources(int argc, const char **argv) { "ResetBuffer", "SpecialCmd", "CShowMessage", "PlaySoundNoWait" }; - debugPrintf("Room mesage: %s\n", roomData->_roomMsg.c_str()); + debugPrintf("Room message: %s\n", roomData->_roomMsg.c_str()); debugPrintf("Transition: %s (%d)\n", transitions[roomData->_transitionType], roomData->_transitionType); debugPrintf("Script:\n"); diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp index a62092f493..98958a3050 100644 --- a/engines/scumm/sound.cpp +++ b/engines/scumm/sound.cpp @@ -359,7 +359,7 @@ void Sound::playSound(int soundID) { _currentCDSound = soundID; } else { // All other sound types are ignored - warning("Scumm::Sound::playSound: encountered audio resoure with chunk type 'SOUN' and sound type %d", type); + warning("Scumm::Sound::playSound: encountered audio resource with chunk type 'SOUN' and sound type %d", type); } } else if ((_vm->_game.platform == Common::kPlatformMacintosh) && (_vm->_game.id == GID_INDY3) && READ_BE_UINT16(ptr + 8) == 0x1C) { |