diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 047c70029..78261d3ee 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -9,13 +9,12 @@ https://tuxpaint.org/ 2024.September.17 (0.9.34) * New Magic Tools: ---------------- - * WIP "Comic Dots", draws repeating dots (using a multiply blend) + * "Comic Dots", draws repeating dots (using a multiply blend) to simulate the "Ben Day process" of coloring/shading. + Code & icon Bill Kendrick + Sound effect based on "superhero theme", Creative Commons Attribution 4.0 by Luis Humanoide - - TODO needs icon Closes https://sourceforge.net/p/tuxpaint/feature-requests/257/ * Magic Tool Improvements: diff --git a/magic/icons/comic_dots_0.png b/magic/icons/comic_dots_0.png new file mode 100644 index 000000000..daa159612 Binary files /dev/null and b/magic/icons/comic_dots_0.png differ diff --git a/magic/icons/comic_dots_1.png b/magic/icons/comic_dots_1.png new file mode 100644 index 000000000..b05643a71 Binary files /dev/null and b/magic/icons/comic_dots_1.png differ diff --git a/magic/src/comicdot.c b/magic/src/comicdot.c index 405f8f6a5..61401d5a3 100644 --- a/magic/src/comicdot.c +++ b/magic/src/comicdot.c @@ -124,7 +124,7 @@ SDL_Surface *comicdot_get_icon(magic_api * api, int which) { char fname[1024]; - snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory); // FIXME [which] + snprintf(fname, sizeof(fname), "%simages/magic/comic_dots_%d.png", api->data_directory, which); return (IMG_Load(fname)); }