"Crescent" icon

This commit is contained in:
Bill Kendrick 2024-09-28 22:29:06 -07:00
parent f2f7ef125f
commit 685f0d44ee
3 changed files with 1 additions and 2 deletions

View file

@ -57,7 +57,6 @@ https://tuxpaint.org/
* WIP "Crescent": Draw various sorts of crescent shapes
+ Code by Bill Kendrick <bill@newbreedsoftware.com>
+ TODO Icon
+ TODO Sound effect
+ TODO Documentation
+ Closes https://sourceforge.net/p/tuxpaint/feature-requests/262/

BIN
magic/icons/crescent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

View file

@ -97,7 +97,7 @@ SDL_Surface *crescent_get_icon(magic_api * api, int which ATTRIBUTE_UNUSED)
{
char fname[1024];
snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory); // FIXME
snprintf(fname, sizeof(fname), "%simages/magic/crescent.png", api->data_directory);
return (IMG_Load(fname));
}