Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 19, 2002
1 parent 86d4649 commit 82e60a0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions music.c
Expand Up @@ -660,8 +660,7 @@ static int music_internal_play(Mix_Music *music, double position)
case MUS_MP3:
SMPEG_enableaudio(music->data.mp3,1);
SMPEG_enablevideo(music->data.mp3,0);
SMPEG_rewind(music_playing->data.mp3);
SMPEG_play(music->data.mp3);
SMPEG_play(music_playing->data.mp3);
break;
#endif
default:
Expand Down Expand Up @@ -751,6 +750,9 @@ int music_internal_position(double position)
case MUS_MP3:
if ( position > 0.0 ) {
SMPEG_skip(music_playing->data.mp3, position);
} else {
SMPEG_rewind(music_playing->data.mp3);
SMPEG_play(music_playing->data.mp3);
}
break;
#endif
Expand Down

0 comments on commit 82e60a0

Please sign in to comment.