Made "Thick" and "Thin" magic tools 'stronger' (more obvious effect).

This commit is contained in:
William Kendrick 2003-06-17 09:21:59 +00:00
parent face1b6038
commit 7b3c7ae46c
2 changed files with 20 additions and 0 deletions

View file

@ -83,6 +83,8 @@ http://www.newbreedsoftware.com/tuxpaint/
* Moved "tuxpaint-import.1" from src/ to src/manpage/.
* "Thick" and "Thin" Magic Tools made 'stronger.'
2003.February.22 (0.9.10)
* UTF-8 stamp descriptions word-wrap around spaces.

View file

@ -3158,6 +3158,24 @@ void blit_magic(int x, int y, int x2, int y2)
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 0, y + yy + 1,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx - 1, y + yy - 1,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx - 1, y + yy + 1,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 1, y + yy - 1,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 1, y + yy + 1,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 0, y + yy - 2,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx - 2, y + yy + 0,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 2, y + yy + 0,
SDL_MapRGB(canvas->format, r, g, b));
putpixel(canvas, x + xx + 0, y + yy + 2,
SDL_MapRGB(canvas->format, r, g, b));
}
}
}