home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CD32 / DRMC_CD.DMS / in.adf / Jukebox.lha / bwd.jb < prev    next >
Encoding:
Text File  |  1993-01-29  |  249 b   |  16 lines

  1. /* skip back to previous track */
  2. /* (c) copyright 1992,93 by F.J. Reichert */
  3.  
  4. options results;
  5. current track;
  6. if result ~= 0 then do;
  7.     toset = result - 1;
  8.     if toset > 0 then do
  9.         set track toset;
  10.     end;
  11.     else do
  12.         set track 1;
  13.     end;
  14. end;
  15. exit(0);    
  16.