diff options
author | Chris Robinson <[email protected]> | 2011-08-19 01:59:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-19 01:59:03 -0700 |
commit | e8e12865728289e6e9d428bd868d6ec4dc7e9d4c (patch) | |
tree | 8fa7ef19562dc0b3fb50fa2542869f5639454893 /Alc/dsound.c | |
parent | 3d722b9ba07d0c2bb34b73dd46183f2ef4eba8ce (diff) |
Remove the "via *" portion of the enumerated devices
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r-- | Alc/dsound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index d34e5409..08a1d13a 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -140,9 +140,9 @@ static BOOL CALLBACK DSoundEnumDevices(LPGUID guid, LPCSTR desc, LPCSTR drvname, count = 0; do { if(count == 0) - snprintf(str, sizeof(str), "%s via DirectSound", desc); + snprintf(str, sizeof(str), "%s", desc); else - snprintf(str, sizeof(str), "%s #%d via DirectSound", desc, count+1); + snprintf(str, sizeof(str), "%s #%d", desc, count+1); count++; for(i = 0;i < NumDevices;i++) |