aboutsummaryrefslogtreecommitdiffstats
path: root/demos/applications/mandelbrot/main.c
diff options
context:
space:
mode:
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;