Ignore:
Timestamp:
Oct 5, 2011, 12:40:56 PM (13 years ago)
Author:
george
Message:
  • Added: Support for play, stop, pause, seek of Windows mmsystem backend.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • CoolAudio/Systems/UAudioSystemMPlayer.pas

    r279 r280  
    105105  tmps := GetEnvironmentVariable('PATH');
    106106  repeat
    107     I := pos(':', tmps);
     107    I := Pos(PathSeparator, tmps);
    108108    if I = 0 then I := Length(tmps);
    109109    tmppath := IncludeTrailingPathDelimiter(Copy(tmps, 0, I - 1)) + MPlayerExecutableName;
     
    118118begin
    119119  inherited Create;
    120   FPath := '';
     120  FPath := FindPath;
    121121end;
    122122
Note: See TracChangeset for help on using the changeset viewer.