1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibGfx: Make a comment in BMPWriter more precise

This commit is contained in:
Nico Weber 2023-03-15 13:36:58 +01:00 committed by Linus Groh
parent e37000b1ea
commit 609b616085

View file

@ -150,7 +150,7 @@ ErrorOr<ByteBuffer> BMPWriter::dump(Bitmap const& bitmap, Options options)
streamer.write_u32(0); // Colorspace CALIBRATED_RGB
for (int i = 0; i < 12; i++) {
streamer.write_u32(0); // Endpoints
streamer.write_u32(0); // Endpoints and gamma
}
}