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