diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-23 22:47:19 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-23 22:47:19 +0200 |
commit | 8d749ece568fa587625d4c9670d53960a26ce12c (patch) | |
tree | 93884002dfbf422569555fc2c35d5d038ebca705 /demos | |
parent | 1909342055302601407dc45fcaec46fc014fa044 (diff) | |
download | uGFX-8d749ece568fa587625d4c9670d53960a26ce12c.tar.gz uGFX-8d749ece568fa587625d4c9670d53960a26ce12c.tar.bz2 uGFX-8d749ece568fa587625d4c9670d53960a26ce12c.zip |
fix
Diffstat (limited to 'demos')
-rw-r--r-- | demos/mandelbrot/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/mandelbrot/main.c b/demos/mandelbrot/main.c index a726320e..45689df3 100644 --- a/demos/mandelbrot/main.c +++ b/demos/mandelbrot/main.c @@ -9,7 +9,7 @@ int main(void) { gdispInit();
gdispSetOrientation(GDISP_ROTATE_270);
- mandelbrotInit(50, 50, 512);
+ mandelbrotInit(128, 128, 512);
while(TRUE) {
|