aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--visualizer.c2
-rw-r--r--visualizer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/visualizer.c b/visualizer.c
index 607a64566..0e587221f 100644
--- a/visualizer.c
+++ b/visualizer.c
@@ -414,7 +414,7 @@ static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {
gdispGFlush(LED_DISPLAY);
#endif
-#if EMULATOR
+#ifdef EMULATOR
draw_emulator();
#endif
// The animation can enable the visualizer
diff --git a/visualizer.h b/visualizer.h
index a3828e35f..45cfa9aa9 100644
--- a/visualizer.h
+++ b/visualizer.h
@@ -51,7 +51,7 @@ GDisplay* get_lcd_display(void);
GDisplay* get_led_display(void);
// For emulator builds, this function need to be implemented
-#if EMULATOR
+#ifdef EMULATOR
void draw_emulator(void);
#endif