diff options
author | Willem Jan Palenstijn | 2013-06-06 16:44:48 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2013-06-06 16:45:59 +0200 |
commit | c9f0e8149d54ad36c862816964cd88c4980e9b15 (patch) | |
tree | a8b1a5000025454215dde9e7e81c44b7e2b70b31 /engines/agi | |
parent | 7456a2ca239773982f980086a2ae77ad5d31b1ab (diff) | |
download | scummvm-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/agi')
-rw-r--r-- | engines/agi/wagparser.cpp | 2 |
1 files changed, 1 insertions, 1 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 |