diff options
Diffstat (limited to 'apps/mandelbrot.c')
-rw-r--r-- | apps/mandelbrot.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c index 2165217..6eef9ef 100644 --- a/apps/mandelbrot.c +++ b/apps/mandelbrot.c @@ -38,9 +38,10 @@ void draw_mandelbrot(struct window *win, int resolution) } srand(iteration); if (iteration < max) - draw_pixel(win, col, row, rand() | 0xff000000); + draw_pixel(win, col, row, + rand() << 16 | rand() << 8 | rand() | 0xff000000); else - draw_pixel(win, col, row, BG_COLOR); + draw_pixel(win, col, row, 0xff000000); } } gui_redraw(); |