summaryrefslogtreecommitdiff
path: root/apps/plugins/mandelbrot.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mandelbrot.c')
-rw-r--r--apps/plugins/mandelbrot.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/mandelbrot.c b/apps/plugins/mandelbrot.c
index d4e399c057..6fe6b352e0 100644
--- a/apps/plugins/mandelbrot.c
+++ b/apps/plugins/mandelbrot.c
@@ -321,14 +321,14 @@ void recalc_parameters(void)
321void init_mandelbrot_set(void) 321void init_mandelbrot_set(void)
322{ 322{
323#if CONFIG_LCD == LCD_SSD1815 /* Recorder, Ondio. */ 323#if CONFIG_LCD == LCD_SSD1815 /* Recorder, Ondio. */
324 x_min = -38L<<22; // -2.375<<26 324 x_min = -38L<<22; /* -2.375<<26 */
325 x_max = 15L<<22; // 0.9375<<26 325 x_max = 15L<<22; /* 0.9375<<26 */
326#else /* all others (square pixels) */ 326#else /* all others (square pixels) */
327 x_min = -36L<<22; // -2.25<<26 327 x_min = -36L<<22; /* -2.25<<26 */
328 x_max = 12L<<22; // 0.75<<26 328 x_max = 12L<<22; /* 0.75<<26 */
329#endif 329#endif
330 y_min = -19L<<22; // -1.1875<<26 330 y_min = -19L<<22; /* -1.1875<<26 */
331 y_max = 19L<<22; // 1.1875<<26 331 y_max = 19L<<22; /* 1.1875<<26 */
332 recalc_parameters(); 332 recalc_parameters();
333} 333}
334 334