"Rotate" icon

This commit is contained in:
Bill Kendrick 2024-09-25 00:09:17 -07:00
parent 9d169fec58
commit 0c59e83dba
3 changed files with 2 additions and 3 deletions

View file

@ -18,11 +18,10 @@ https://tuxpaint.org/
+ Closes https://sourceforge.net/p/tuxpaint/feature-requests/257/ + Closes https://sourceforge.net/p/tuxpaint/feature-requests/257/
* "Rotate", rotate's the entire image on the canvas. * "Rotate", rotate's the entire image on the canvas.
+ Code Bill Kendrick <bill@newbreedsoftware.com> + Code & icon Bill Kendrick <bill@newbreedsoftware.com>
+ Sound effects based on "Rotating tank turret planetary electric motor" + Sound effects based on "Rotating tank turret planetary electric motor"
Creative Commons 0 by lorefold Creative Commons 0 by lorefold
<https://freesound.org/people/lorefold/> <https://freesound.org/people/lorefold/>
+ TODO Icon
+ TODO Documentation + TODO Documentation
* "Fractal", a set of freehand drawing tools that * "Fractal", a set of freehand drawing tools that

BIN
magic/icons/rotate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

View file

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