aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2013-06-06 16:44:48 +0200
committerWillem Jan Palenstijn2013-06-06 16:45:59 +0200
commitc9f0e8149d54ad36c862816964cd88c4980e9b15 (patch)
treea8b1a5000025454215dde9e7e81c44b7e2b70b31 /engines
parent7456a2ca239773982f980086a2ae77ad5d31b1ab (diff)
downloadscummvm-rg350-c9f0e8149d54ad36c862816964cd88c4980e9b15.tar.gz
scummvm-rg350-c9f0e8149d54ad36c862816964cd88c4980e9b15.tar.bz2
scummvm-rg350-c9f0e8149d54ad36c862816964cd88c4980e9b15.zip
ALL: Fix typo (succesful -> successful)
Thanks to 'onlyjob' on pull request #337 for pointing out an instance of this.
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/wagparser.cpp2
-rw-r--r--engines/testbed/midi.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/wagparser.cpp b/engines/agi/wagparser.cpp
index 8dee6545c0..644ca7c103 100644
--- a/engines/agi/wagparser.cpp
+++ b/engines/agi/wagparser.cpp
@@ -178,7 +178,7 @@ bool WagFileParser::parse(const Common::FSNode &node) {
_parsedOk = false; // We haven't parsed the file yet
stream = node.createReadStream(); // Open the file
- if (stream) { // Check that opening the file was succesful
+ if (stream) { // Check that opening the file was successful
if (checkWagVersion(*stream)) { // Check that WinAGI version string is valid
// It seems we've got a valid *.wag file so let's parse its properties from the start.
stream->seek(0); // Rewind the stream
diff --git a/engines/testbed/midi.cpp b/engines/testbed/midi.cpp
index 70ede406d5..33fab03a5e 100644
--- a/engines/testbed/midi.cpp
+++ b/engines/testbed/midi.cpp
@@ -103,7 +103,7 @@ TestExitStatus MidiTests::playMidiMusic() {
return kTestFailed;
}
- Testsuite::logDetailedPrintf("Info! Midi: Succesfully opened the driver\n");
+ Testsuite::logDetailedPrintf("Info! Midi: Successfully opened the driver\n");
Common::MemoryWriteStreamDynamic ws(DisposeAfterUse::YES);
loadMusicInMemory(&ws);