diff options
author | scuri <scuri> | 2009-08-13 22:34:25 +0000 |
---|---|---|
committer | scuri <scuri> | 2009-08-13 22:34:25 +0000 |
commit | 380fdb5d8c80d094e5a8bc82bfc091bc87e6c43e (patch) | |
tree | 82e1142d204b405febd4554b76c0b81187f22d5a /src/im_format_gif.cpp | |
parent | 22eee5011ab2699a3267bde4a7b4430d8460314c (diff) |
*** empty log message ***
Diffstat (limited to 'src/im_format_gif.cpp')
-rw-r--r-- | src/im_format_gif.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/im_format_gif.cpp b/src/im_format_gif.cpp index 390271a..8489331 100644 --- a/src/im_format_gif.cpp +++ b/src/im_format_gif.cpp @@ -2,7 +2,7 @@ * \brief GIF - Graphics Interchange Format * * See Copyright Notice in im_lib.h - * $Id: im_format_gif.cpp,v 1.2 2008/12/03 15:45:34 scuri Exp $ + * $Id: im_format_gif.cpp,v 1.3 2009/08/13 22:34:25 scuri Exp $ */ #include "im_format.h" @@ -659,7 +659,7 @@ static void iGIFReadGraphicsControl(imBinFile* handle, imAttribTable* attrib_tab if (word_value) attrib_table->Set("Delay", IM_USHORT, 1, &word_value); - /* transparency color */ + /* transparency index */ if (byte_value & 0x01) { imBinFileRead(handle, &byte_value, 1, 1); @@ -908,7 +908,7 @@ static int iGIFWriteGraphicsControl(imBinFile* handle, imAttribTable* attrib_tab imBinFileWrite(handle, &word_value, 1, 2); - /* transparency color */ + /* transparency index */ if (attrib_transparency) { byte_value = *(unsigned char*)attrib_transparency; |