Skip to content

Commit e2282e4

Browse files
authored
Fix get MS calculation for ofAVEngineSoundPlayer (#8506)
1 parent da0a3eb commit e2282e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/openFrameworks/sound/ofAVEngineSoundPlayer.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ - (void)positionMs:(int)value {
976976

977977
- (int)positionMs {
978978
float timeSeconds = [self positionSeconds];
979-
return timeSeconds/1000.0;
979+
return timeSeconds*1000.0;
980980
}
981981

982982
- (float)positionSeconds{

0 commit comments

Comments
 (0)