Infinisim: GifExporter: Disable dithering
This patch disables dithering since it causes artifacts within the generated gif files.
This commit is contained in:
parent
7cc4876066
commit
db77a2cf52
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -230,7 +230,7 @@ public:
|
|||
image[(hi * sdl_width + wi)*4 + 3] = 255; // no alpha
|
||||
}
|
||||
}
|
||||
GifWriteFrame(&writer, image.data(), sdl_width, sdl_height, delay_ds, 8, true);
|
||||
GifWriteFrame(&writer, image.data(), sdl_width, sdl_height, delay_ds, 8, false);
|
||||
}
|
||||
}
|
||||
void close()
|
||||
|
|
Loading…
Reference in a new issue