aboutsummaryrefslogtreecommitdiff
path: root/visualizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'visualizer.c')
-rw-r--r--visualizer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/visualizer.c b/visualizer.c
index 81ec8298f..0684a26d8 100644
--- a/visualizer.c
+++ b/visualizer.c
@@ -77,8 +77,8 @@ static remote_object_t* remote_objects[] = {
77 77
78#endif 78#endif
79 79
80GDisplay* LCDDisplay; 80GDisplay* LCD_DISPLAY = 0;
81GDisplay* LEDDisplay; 81GDisplay* LED_DISPLAY = 0;
82 82
83 83
84void start_keyframe_animation(keyframe_animation_t* animation) { 84void start_keyframe_animation(keyframe_animation_t* animation) {
@@ -437,8 +437,8 @@ void visualizer_init(void) {
437 add_remote_objects(remote_objects, sizeof(remote_objects) / sizeof(remote_object_t*) ); 437 add_remote_objects(remote_objects, sizeof(remote_objects) / sizeof(remote_object_t*) );
438#endif 438#endif
439 // TODO: Make sure these works when either of these are disabled 439 // TODO: Make sure these works when either of these are disabled
440 LCDDisplay = gdispGetDisplay(0); 440 LCD_DISPLAY = gdispGetDisplay(0);
441 LEDDisplay = gdispGetDisplay(1); 441 LED_DISPLAY = gdispGetDisplay(1);
442 442
443 443
444 // We are using a low priority thread, the idea is to have it run only 444 // We are using a low priority thread, the idea is to have it run only