aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-12-02 06:37:34 -0800
committerChris Robinson <[email protected]>2012-12-02 06:37:34 -0800
commitdd34daed42adb98fe2a167f6fc9aaf98947a3cc3 (patch)
treefbd949cc8d8ea3a0aadcc7dac2ce255b3a1ce651 /Alc
parent830428fb0686729d287def30e86f60d6efacaec0 (diff)
Trace the opened device name in alcCaptureOpenDevice
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index a53f0598..abd2a01f 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2977,7 +2977,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName,
device->next = DeviceList;
} while(!CompExchangePtr((XchgPtr*)&DeviceList, device->next, device));
- TRACE("Created device %p\n", device);
+ TRACE("Created device %p, \"%s\"\n", device, device->DeviceName);
return device;
}