summaryrefslogtreecommitdiffstats
path: root/src/app.c
diff options
context:
space:
mode:
authorDaveHodder67 <dave.hodder@focusrite.com>2015-07-06 14:36:25 +0100
committerDaveHodder67 <dave.hodder@focusrite.com>2015-07-06 14:36:25 +0100
commita7eb81707d7300c25ec03c39c2797df10e0a7c82 (patch)
tree5452457e12d6abbe6a625bd4f9f8c652879609ba /src/app.c
parent010601571f334328f6f08625857df8444fb65d1c (diff)
downloadlaunchpad-polymaker-a7eb81707d7300c25ec03c39c2797df10e0a7c82.tar.gz
launchpad-polymaker-a7eb81707d7300c25ec03c39c2797df10e0a7c82.zip
fixed C++-style "static const int ..." error
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index cdb41cc..d9eb893 100644
--- a/src/app.c
+++ b/src/app.c
@@ -120,7 +120,7 @@ void app_cable_event(u8 type, u8 value)
120void app_timer_event() 120void app_timer_event()
121{ 121{
122 // example - send MIDI clock at 125bpm 122 // example - send MIDI clock at 125bpm
123 static const int TICK_MS = 20; 123#define TICK_MS 20
124 124
125 static u8 ms = TICK_MS; 125 static u8 ms = TICK_MS;
126 126