Made "Thick" and "Thin" magic tools 'stronger' (more obvious effect).
This commit is contained in:
parent
face1b6038
commit
7b3c7ae46c
2 changed files with 20 additions and 0 deletions
|
|
@ -83,6 +83,8 @@ http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
* Moved "tuxpaint-import.1" from src/ to src/manpage/.
|
* Moved "tuxpaint-import.1" from src/ to src/manpage/.
|
||||||
|
|
||||||
|
* "Thick" and "Thin" Magic Tools made 'stronger.'
|
||||||
|
|
||||||
|
|
||||||
2003.February.22 (0.9.10)
|
2003.February.22 (0.9.10)
|
||||||
* UTF-8 stamp descriptions word-wrap around spaces.
|
* UTF-8 stamp descriptions word-wrap around spaces.
|
||||||
|
|
|
||||||
|
|
@ -3158,6 +3158,24 @@ void blit_magic(int x, int y, int x2, int y2)
|
||||||
SDL_MapRGB(canvas->format, r, g, b));
|
SDL_MapRGB(canvas->format, r, g, b));
|
||||||
putpixel(canvas, x + xx + 0, y + yy + 1,
|
putpixel(canvas, x + xx + 0, y + yy + 1,
|
||||||
SDL_MapRGB(canvas->format, r, g, b));
|
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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue