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
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue