diff options
author | Alexandre Detiste | 2016-10-31 09:56:43 +0100 |
---|---|---|
committer | Alexandre Detiste | 2016-10-31 09:56:43 +0100 |
commit | f8388db32b26b1ca9ef109e1c0d83a04c052d9b5 (patch) | |
tree | 2931e441b9d828b3f107ff75f3e9b8f572a00f30 /engines | |
parent | b34e784c8a6f76f034ebfa62d1c95c809e5414b4 (diff) | |
download | scummvm-rg350-f8388db32b26b1ca9ef109e1c0d83a04c052d9b5.tar.gz scummvm-rg350-f8388db32b26b1ca9ef109e1c0d83a04c052d9b5.tar.bz2 scummvm-rg350-f8388db32b26b1ca9ef109e1c0d83a04c052d9b5.zip |
JANITORIAL: Typos
I've not fixed this one, maybe it's on purpose:
RELASE -> RELEASE
engines/mads/staticres.cpp:const char *const kGameReleaseTitleStr =
"GAME RELASE VERSION INFO";
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) { |