Skip to content

Commit

Permalink
Update GIFEncoder.cpp
Browse files Browse the repository at this point in the history
const-qualify input pointers
  • Loading branch information
yaito3014 authored Jul 20, 2024
1 parent 9c77228 commit fcc673e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Siv3D/src/Siv3D/ImageFormat/GIF/GIFEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ extern "C"
GifQuantizeBuffer(unsigned int Width,
unsigned int Height,
int* ColorMapSize,
GifByteType* RedInput,
GifByteType* GreenInput,
GifByteType* BlueInput,
const GifByteType* RedInput,
const GifByteType* GreenInput,
const GifByteType* BlueInput,
GifByteType* OutputBuffer,
GifColorType* OutputColorMap);
}
Expand Down

0 comments on commit fcc673e

Please sign in to comment.