diff options
author | scuri <scuri> | 2009-10-01 14:14:53 +0000 |
---|---|---|
committer | scuri <scuri> | 2009-10-01 14:14:53 +0000 |
commit | 537ce7ddb32932a2100ae767b1eca51a9dd1c35f (patch) | |
tree | 0b487bef90b949fd8b97f180629a1b0bacefc78c /src/im_format_bmp.cpp | |
parent | 62783aee16f96fe5e513fb230b8efddaa02981df (diff) |
New: ASCII compression for RAW format to access text data instead of binary.
Diffstat (limited to 'src/im_format_bmp.cpp')
-rw-r--r-- | src/im_format_bmp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/im_format_bmp.cpp b/src/im_format_bmp.cpp index b9b52dd..5cfe013 100644 --- a/src/im_format_bmp.cpp +++ b/src/im_format_bmp.cpp @@ -2,7 +2,7 @@ * \brief BMP - Windows Device Independent Bitmap * * See Copyright Notice in im_lib.h - * $Id: im_format_bmp.cpp,v 1.3 2009/08/19 18:39:43 scuri Exp $ + * $Id: im_format_bmp.cpp,v 1.4 2009/10/01 14:15:47 scuri Exp $ */ #include "im_format.h" @@ -524,7 +524,7 @@ int imFileFormatBMP::ReadImageInfo(int index) return IM_ERR_NONE; } - /* we already readed the compression information */ + /* we already read the compression information */ /* jump 8 bytes (compression, image size) */ imBinFileSeekOffset(handle, 8); |