From fca107b493d5e9bf793f57bd3359b7971a245c2c Mon Sep 17 00:00:00 2001 From: NickHardeman Date: Fri, 20 Mar 2026 10:57:36 -0400 Subject: [PATCH] Fix get MS calculation for ofAVEngineSoundPlayer --- libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm b/libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm index c247df014c1..8294684ac43 100644 --- a/libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm +++ b/libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm @@ -976,7 +976,7 @@ - (void)positionMs:(int)value { - (int)positionMs { float timeSeconds = [self positionSeconds]; - return timeSeconds/1000.0; + return timeSeconds*1000.0; } - (float)positionSeconds{