diff options
author | Johannes Schickel | 2009-05-12 13:56:09 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-12 13:56:09 +0000 |
commit | fa0fe7fada18be6499694f94164af3d06fdf628a (patch) | |
tree | cd5e7df2333e26d348485c4d06e2808920aa4dba /common | |
parent | 2e59107a427e08d9272c89a8715e993517356f89 (diff) | |
download | scummvm-rg350-fa0fe7fada18be6499694f94164af3d06fdf628a.tar.gz scummvm-rg350-fa0fe7fada18be6499694f94164af3d06fdf628a.tar.bz2 scummvm-rg350-fa0fe7fada18be6499694f94164af3d06fdf628a.zip |
Typo.
svn-id: r40487
Diffstat (limited to 'common')
-rw-r--r-- | common/iff_container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/iff_container.h b/common/iff_container.h index a70548abd4..2299d76e0c 100644 --- a/common/iff_container.h +++ b/common/iff_container.h @@ -202,7 +202,7 @@ public: IFFParser(Common::ReadStream &input) : _formChunk(&input), _chunk(&input) { _formChunk.readHeader(); if (_formChunk.id != ID_FORM) { - error("IFFDecoder input is not a FORM type IFF file"); + error("IFFParser input is not a FORM type IFF file"); } _typeId = _formChunk.readUint32BE(); } |