From b38f6f6125dc0aa8f6e7179ff02fbaa98b528909 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Thu, 20 Sep 2018 07:42:35 -0400 Subject: [PATCH] MP Libopenmpt: Fix UINT32->double cast (buildbots) --- src/sdl/mixer_sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c index 17a4cfb15..bcf4eca98 100644 --- a/src/sdl/mixer_sound.c +++ b/src/sdl/mixer_sound.c @@ -869,7 +869,7 @@ boolean I_SetSongPosition(UINT32 position) { // This isn't 100% correct because we don't account for loop points because we can't get them. // But if you seek past end of song, OpenMPT seeks to 0. So adjust the position anyway. - openmpt.module_set_position_seconds(mod, (double)get_adjusted_position(position)/1000.); // returns new position + openmpt.module_set_position_seconds(mod, (double)(get_adjusted_position(position)/1000.0L)); // returns new position return true; } else