summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/fractals/fractal.h4
-rw-r--r--apps/plugins/fractals/fractal_sets.h6
-rw-r--r--apps/plugins/fractals/mandelbrot_set.c1
3 files changed, 7 insertions, 4 deletions
diff --git a/apps/plugins/fractals/fractal.h b/apps/plugins/fractals/fractal.h
index 6c0af2298a..cac0df48c4 100644
--- a/apps/plugins/fractals/fractal.h
+++ b/apps/plugins/fractals/fractal.h
@@ -21,10 +21,6 @@
21#ifndef _FRACTAL_H 21#ifndef _FRACTAL_H
22#define _FRACTAL_H 22#define _FRACTAL_H
23 23
24#if (LCD_DEPTH < 8)
25#define USEGSLIB
26#endif
27
28/* variable button definitions */ 24/* variable button definitions */
29#if CONFIG_KEYPAD == RECORDER_PAD 25#if CONFIG_KEYPAD == RECORDER_PAD
30#define FRACTAL_QUIT BUTTON_OFF 26#define FRACTAL_QUIT BUTTON_OFF
diff --git a/apps/plugins/fractals/fractal_sets.h b/apps/plugins/fractals/fractal_sets.h
index 3b5e3c7856..b2eaa589dc 100644
--- a/apps/plugins/fractals/fractal_sets.h
+++ b/apps/plugins/fractals/fractal_sets.h
@@ -21,8 +21,14 @@
21#ifndef _FRACTAL_SETS_H 21#ifndef _FRACTAL_SETS_H
22#define _FRACTAL_SETS_H 22#define _FRACTAL_SETS_H
23 23
24#include "plugin.h"
25
26#if (LCD_DEPTH < 8)
27#define USEGSLIB
24#include "lib/grey.h" 28#include "lib/grey.h"
29#else
25#include "lib/xlcd.h" 30#include "lib/xlcd.h"
31#endif
26 32
27#define DELTA 8 /* Panning moves 1/DELTA of screen */ 33#define DELTA 8 /* Panning moves 1/DELTA of screen */
28 34
diff --git a/apps/plugins/fractals/mandelbrot_set.c b/apps/plugins/fractals/mandelbrot_set.c
index 013b462454..85f1b4ba75 100644
--- a/apps/plugins/fractals/mandelbrot_set.c
+++ b/apps/plugins/fractals/mandelbrot_set.c
@@ -20,6 +20,7 @@
20 * KIND, either express or implied. 20 * KIND, either express or implied.
21 * 21 *
22 ****************************************************************************/ 22 ****************************************************************************/
23#include "fractal_sets.h"
23#include "mandelbrot_set.h" 24#include "mandelbrot_set.h"
24 25
25#define BUTTON_YIELD_TIMEOUT (HZ / 4) 26#define BUTTON_YIELD_TIMEOUT (HZ / 4)