Replaced tabs with spaces to fix indentation

This commit is contained in:
OpenSceneGraph git repository 2018-11-02 08:34:43 +00:00 committed by GitHub
parent f4c4905d9e
commit ba7147dd95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,7 +322,7 @@ int overwrite)
// keep pixels of last image if transparent mode is on // keep pixels of last image if transparent mode is on
// this is necessary for GIF animating // this is necessary for GIF animating
ptr += 3; ptr += 3;
if(overwrite) *ptr = 0x00; if(overwrite) *ptr = 0x00;
++ptr; ++ptr;
} }
else else
@ -340,7 +340,7 @@ int overwrite)
*ptr++ = col; *ptr++ = col;
*ptr++ = col; *ptr++ = col;
} }
*ptr++ = 0xff; *ptr++ = 0xff;
} }
} }
} }