File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ function Mix_PlayMusic(music: PMix_Music; loops: cint): cint cdecl; external MIX
662
662
663
663
{ * Fade in music or a channel over "ms" milliseconds, same semantics as the "Play" functions *}
664
664
function Mix_FadeInMusic (music: PMix_Music; loops: cint; ms: cint): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_FadeInMusic' { $ENDIF} { $ENDIF} ;
665
- function Mix_FadeInMusicPos (music: PMix_Music; loops: cint; ms: cint; position: Double ): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_FadeInMusicPos' { $ENDIF} { $ENDIF} ;
665
+ function Mix_FadeInMusicPos (music: PMix_Music; loops: cint; ms: cint; position: cdouble ): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_FadeInMusicPos' { $ENDIF} { $ENDIF} ;
666
666
function Mix_FadeInChannel (channel: cint; chunk: PMix_Chunk; loops: cint; ms: cint): cint; cdecl;
667
667
external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_FadeInChannel' { $ENDIF} { $ENDIF} ;
668
668
function Mix_FadeInChannelTimed (channel: cint; chunk: PMix_Chunk; loops: cint; ms: cint; ticks: cint): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_FadeInChannelTimed' { $ENDIF} { $ENDIF} ;
@@ -745,7 +745,7 @@ function Mix_GetNumTracks(music: PMix_Music): cint; cdecl;
745
745
order number) and for OGG, FLAC, MP3_MAD, MP3_MPG and MODPLUG music
746
746
(set position in seconds), at the moment.
747
747
*}
748
- function Mix_SetMusicPosition (position: Double ): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_SetMusicPosition' { $ENDIF} { $ENDIF} ;
748
+ function Mix_SetMusicPosition (position: cdouble ): cint cdecl; external MIX_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _MIX_SetMusicPosition' { $ENDIF} { $ENDIF} ;
749
749
750
750
{ * Get the current position of a music stream, in seconds.
751
751
Returns -1.0 if this feature is not supported for some codec.
You can’t perform that action at this time.
0 commit comments