diff options
Diffstat (limited to 'src/graphics.c')
| -rw-r--r-- | src/graphics.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/graphics.c b/src/graphics.c index 824cee8..ffaa333 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1726,9 +1726,9 @@ void draw_parts(pixel *vid) else if(t==PT_TEST2) { if(parts[i].tmp==2) - blendpixel(vid, nx, ny, 0, 100, 0, 255); + blendpixel(vid, nx, ny, 0, 100, 50, 255); else - blendpixel(vid, nx, ny, 0, 255, 0, 255); + blendpixel(vid, nx, ny, 0, 255, 90, 255); } else if(t==PT_TEST3) { @@ -1743,6 +1743,20 @@ void draw_parts(pixel *vid) else blendpixel(vid, nx, ny, 0, 0, 70, 255); } + else if(t==PT_FROG) + { + if(parts[i].tmp==2) + blendpixel(vid, nx, ny, 0, 100, 0, 255); + else + blendpixel(vid, nx, ny, 0, 255, 0, 255); + } + else if(t==PT_BRAN) + { + if(parts[i].tmp==1) + blendpixel(vid, nx, ny, 150, 150, 0, 255); + else + blendpixel(vid, nx, ny, 255, 255, 0, 255); + } else if(t==PT_DEUT) { |
