aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-02-27 21:57:33 -0800
committerChris Robinson <[email protected]>2012-02-27 21:57:33 -0800
commit230e784b9e072d8d3ec7e92bcb05f372ce6087b9 (patch)
tree1328e4c72e7b5f50850c9dba849ab9db594b238e /Alc
parent4b88168edbbc60aeb28ee6d217d8ecacfdc649aa (diff)
Trace the name of the created device
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 7a5e3c54..18e41297 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2623,7 +2623,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(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->szDeviceName);
return device;
}