0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom.git synced 2025-04-19 16:21:16 +00:00

ADLMIDI: Tiny warning fix

This commit is contained in:
Vitaly Novichkov 2018-03-24 23:19:50 +03:00
parent b6302f5fc9
commit c65a004e08

View file

@ -796,6 +796,7 @@ ADLMIDI_EXPORT double adl_tickEvents(struct ADL_MIDIPlayer *device, double secon
return -1.0;
return player->Tick(seconds, granuality);
#else
(void)seconds; (void)granuality;
return -1.0;
#endif
}