Update midi_Platform.h

This commit is contained in:
lathoub 2020-03-24 13:56:58 +01:00
parent 122ebe1dc3
commit bd2f6476b2
1 changed files with 7 additions and 0 deletions

View File

@ -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