larger mandelbrot

This commit is contained in:
neingeist 2013-05-11 16:02:06 +02:00
parent 0c2d830be6
commit bcdea67e9a

View file

@ -8,7 +8,7 @@ int main(int argc, char *argv[]) {
printf("Error: Could not initialize SDL: %s.\n", SDL_GetError());
exit(1);
}
screen = SDL_SetVideoMode(640, 480, 32, SDL_SWSURFACE);
screen = SDL_SetVideoMode(1280, 800, 32, SDL_SWSURFACE);
if (SDL_MUSTLOCK(screen)) {
SDL_LockSurface(screen);