Browse Source

WineASIO 0.7.2

tags/v1.0.0
Joakim B Hernberg 14 years ago
parent
commit
0dcea23ebf
2 changed files with 3 additions and 4 deletions
  1. +2
    -3
      README.TXT
  2. +1
    -1
      asio.c

+ 2
- 3
README.TXT View File

@@ -99,15 +99,14 @@ port mapping, config file, dynamic client naming, bringing
back in line with Robert Reif's code
Peter L Jones (pljones@users.sf.net)

fix for windows-style path handling: William Steidtmann

todo:
- make timecode sync to jack transport


4. CHANGE LOG
-------------
0.7.1:
02-DEC-2007: Build against installed libjack.so rather than dlloading (RB)

0.7:
01-DEC-2007: In a fit of insanity, I merged JackLab and Robert Reif code bases. (PLJ)



+ 1
- 1
asio.c View File

@@ -267,7 +267,7 @@ static void set_clientname(IWineASIOImpl *This)
fclose(cmd);

ptr = line;
while(strchr(ptr, '/')) ++ptr;
while(strchr(ptr, '/') || strchr(ptr, '\\')) ++ptr;
line = ptr;
ptr = strcasestr(line, ".exe");
if (ptr) {


Loading…
Cancel
Save