diff options
author | Chris Robinson <[email protected]> | 2010-05-31 19:00:33 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-05-31 19:00:33 -0700 |
commit | da1dee351dce20da4c46d0fbdf3054196359dee2 (patch) | |
tree | 1362f3ffd66b97980e04dddeffe67f880088124b /Alc/dsound.c | |
parent | 694e9a5fec3aa9695e168480253c21486840d35c (diff) |
Update device naming to be more apparent about the device being used
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r-- | Alc/dsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index 704fb909..f1229fdd 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -123,7 +123,7 @@ static BOOL CALLBACK DSoundEnumDevices(LPGUID guid, LPCSTR desc, LPCSTR drvname, { DeviceList = temp; - snprintf(str, sizeof(str), "DirectSound Software on %s", desc); + snprintf(str, sizeof(str), "%s via DirectSound", desc); DeviceList[NumDevices].name = strdup(str); DeviceList[NumDevices].guid = *guid; |