REALLY update screen only every 10th line

This commit is contained in:
neingeist 2013-05-13 14:07:44 +02:00
parent 13b3971d3e
commit 682526348c

View file

@ -52,7 +52,7 @@ void drawmandelbrot(SDL_Surface *surface) {
pixels[i] = color;
/* Update the screen every 10 lines. */
if (y % 10 == 0) {
if (y % 10 == 0 && x == 0) {
SDL_Flip(surface);
}
}