Icons for Saturate, Desaturate, Keep Color, Remove Color

This commit is contained in:
Bill Kendrick 2023-03-07 23:08:34 -08:00
parent 6b7f59d7f1
commit b4c284edc8
6 changed files with 10 additions and 12 deletions

BIN
magic/icons/desaturate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

BIN
magic/icons/keep_color.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
magic/icons/saturate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

View file

@ -23,7 +23,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt)
Last updated: February 28, 2023
Last updated: March 7, 2023
*/
#include <stdio.h>
@ -82,19 +82,19 @@ char * tool_descriptions[NUM_TOOLS][2] = {
char * sfx_filenames[NUM_TOOLS] = {
"fade.wav",
"darken.wav",
"fade.wav", // FIXME
"darken.wav", // FIXME
"darken.wav", // FIXME
"darken.wav", // FIXME
"desaturate.wav",
"saturate.wav",
"remove_color.wav",
"keep_color.wav",
};
char * icon_filenames[NUM_TOOLS] = {
"fade.png",
"darken.png",
"fade.png", // FIXME
"darken.png", // FIXME
"darken.png", // FIXME
"darken.png", // FIXME
"desaturate.png",
"saturate.png",
"remove_color.png",
"keep_color.png",
};
static Mix_Chunk *snd_effects[NUM_TOOLS];