From bd2f6476b25179cba5295228560c2a3eb44e679c Mon Sep 17 00:00:00 2001 From: lathoub Date: Tue, 24 Mar 2020 13:56:58 +0100 Subject: [PATCH] Update midi_Platform.h --- src/midi_Platform.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/midi_Platform.h b/src/midi_Platform.h index a956982..61ca26f 100644 --- a/src/midi_Platform.h +++ b/src/midi_Platform.h @@ -39,6 +39,13 @@ struct DefaultPlatform static unsigned long now() { return ::millis(); }; }; +#else + +struct DefaultPlatform +{ + static unsigned long now() { return 0; }; +}; + #endif END_MIDI_NAMESPACE