diff options
author | athrxx | 2019-10-07 21:04:37 +0200 |
---|---|---|
committer | athrxx | 2019-10-31 13:10:22 +0100 |
commit | 6651b08d311d90a8ae491f31b92ffa593795cbee (patch) | |
tree | 0ad0d29a947c896ca34da7bbaf9272ba2a53ceaf /engines/kyra/graphics | |
parent | 1a08072deaf1e574ce3dd4c7ce7d14efdeb3171a (diff) | |
download | scummvm-rg350-6651b08d311d90a8ae491f31b92ffa593795cbee.tar.gz scummvm-rg350-6651b08d311d90a8ae491f31b92ffa593795cbee.tar.bz2 scummvm-rg350-6651b08d311d90a8ae491f31b92ffa593795cbee.zip |
KYRA: (EOB) - fix some typos in comments
Diffstat (limited to 'engines/kyra/graphics')
-rw-r--r-- | engines/kyra/graphics/screen_eob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/graphics/screen_eob.cpp b/engines/kyra/graphics/screen_eob.cpp index 618f85fec6..4f31074041 100644 --- a/engines/kyra/graphics/screen_eob.cpp +++ b/engines/kyra/graphics/screen_eob.cpp @@ -278,10 +278,10 @@ void Screen_EoB::loadEoBBitmap(const char *file, const uint8 *cgaMapping, int te // This check is due to EOB II Amiga German. That version simply checks // for certain file names which aren't actual CPS files. These files use - // a diffenrent format and compression type. I check the header size + // a different format and compression type. I check the header size // info to identify these. } else if (_vm->gameFlags().platform == Common::kPlatformAmiga) { - // Tolerance for diffenrences up to 2 bytes is needed in some cases + // Tolerance for size mismatches up to 2 bytes is needed in some cases if ((((s->readUint16LE()) + 5) & ~3) != (((s->size()) + 3) & ~3)) loadAlternative = true; } |