diff options
| author | erdgeist <erdgeist@bauklotz.fritz.box> | 2016-08-12 23:10:16 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@bauklotz.fritz.box> | 2016-08-12 23:10:16 +0200 |
| commit | 9231ba91659d655501a37e9758abfc2e1b5436d7 (patch) | |
| tree | 88da6e186ae7d2f2c80860acdba5477cc0f4a1ab | |
| parent | 9a6ad7402ed3ebef0e2976e18b80afe579f075e1 (diff) | |
Only include display.h if we're not on ARDUINO
| -rw-r--r-- | engine.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -3,13 +3,14 @@ | |||
| 3 | 3 | ||
| 4 | #include "config.h" | 4 | #include "config.h" |
| 5 | #include "engine.h" | 5 | #include "engine.h" |
| 6 | #include "display.h" | ||
| 7 | #include "main.h" | 6 | #include "main.h" |
| 8 | #include "midi.h" | 7 | #include "midi.h" |
| 9 | 8 | ||
| 10 | static int g_selected_string = -1; | 9 | static int g_selected_string = -1; |
| 11 | 10 | ||
| 12 | #ifndef NO_DISPLAY | 11 | #ifndef NO_DISPLAY |
| 12 | #include "display.h" | ||
| 13 | |||
| 13 | static LPoint g_render_points[1024]; | 14 | static LPoint g_render_points[1024]; |
| 14 | static int g_render_point_count; | 15 | static int g_render_point_count; |
| 15 | static const int g_harfe_width = 1024; | 16 | static const int g_harfe_width = 1024; |
