From a7eb81707d7300c25ec03c39c2797df10e0a7c82 Mon Sep 17 00:00:00 2001 From: DaveHodder67 Date: Mon, 6 Jul 2015 14:36:25 +0100 Subject: fixed C++-style "static const int ..." error --- src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app.c') 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) void app_timer_event() { // example - send MIDI clock at 125bpm - static const int TICK_MS = 20; +#define TICK_MS 20 static u8 ms = TICK_MS; -- cgit v1.2.1