aboutsummaryrefslogtreecommitdiffstats
path: root/demos/applications/mandelbrot/main.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-12-16 08:58:59 -0800
committerTectu <joel@unormal.org>2012-12-16 08:58:59 -0800
commit4743790cd40832205f701a280acd622cd003a9fd (patch)
tree088919aae5e2673621f6090dc79adac862c8c8a6 /demos/applications/mandelbrot/main.c
parent09fc35864aa695cc46dcb95ed3951a365622b709 (diff)
parentf31a1f7f4aeb09bc09d49944daaf2f38fddd94e7 (diff)
downloaduGFX-4743790cd40832205f701a280acd622cd003a9fd.tar.gz
uGFX-4743790cd40832205f701a280acd622cd003a9fd.tar.bz2
uGFX-4743790cd40832205f701a280acd622cd003a9fd.zip
Merge pull request #26 from inmarket/master
Many tidyups and restructure.
Diffstat (limited to 'demos/applications/mandelbrot/main.c')
-rw-r--r--demos/applications/mandelbrot/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/demos/applications/mandelbrot/main.c b/demos/applications/mandelbrot/main.c
index 6ab19de1..2fe1141d 100644
--- a/demos/applications/mandelbrot/main.c
+++ b/demos/applications/mandelbrot/main.c
@@ -20,7 +20,7 @@
#include "ch.h"
#include "hal.h"
-#include "gdisp.h"
+#include "gfx.h"
void mandelbrot(float x1, float y1, float x2, float y2) {
unsigned int i,j, width, height;
@@ -63,7 +63,6 @@ int main(void) {
chSysInit();
gdispInit();
- gdispSetOrientation(GDISP_ROTATE_270);
/* where to zoom in */
cx = -0.086f;