Don't pass start point to player_start

Assume default as 0.

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
master
Claudio Matsuoka 14 years ago
parent 62280d20ae
commit e2437ffcb3
  1. 4
      src/main.c

@ -215,7 +215,9 @@ int main(int argc, char **argv)
control.time = 0.0;
control.loop = options.loop;
if (xmp_player_start(handle, options.start, options.freq, options.format) == 0) {
if (xmp_player_start(handle, options.freq, options.format) == 0) {
xmp_ord_set(handle, options.start);
/* Mute channels */
for (i = 0; i < XMP_MAX_CHANNELS; i++) {

Loading…
Cancel
Save