From 6abb1504c5c89c0683a9ba4ec3096fc2dc6a6063 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sun, 8 Dec 2019 15:50:02 +0300 Subject: [PATCH] music_mod.c: add a FIXME note to MOD_jump_to_time() --- music_mod.c | 1 + 1 file changed, 1 insertion(+) diff --git a/music_mod.c b/music_mod.c index ecd9d5ee..24ddb7ff 100644 --- a/music_mod.c +++ b/music_mod.c @@ -347,6 +347,7 @@ void MOD_delete(MODULE *music) /* Jump (seek) to a given position (time is in seconds) */ void MOD_jump_to_time(MODULE *music, double time) { + /* FIXME: WRONG: THIS IS NOT A TIME SEEK */ mikmod.Player_SetPosition((UWORD)time); }