From b023dbe7b87921a5b4eab0ed759e7b3dd04acf57 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 19 Apr 2012 22:50:11 -0700 Subject: Remove hungarian notation from the device and context structs --- Alc/backends/winmm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Alc/backends/winmm.c') diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c index 9641bcf8..21d1b50b 100644 --- a/Alc/backends/winmm.c +++ b/Alc/backends/winmm.c @@ -345,7 +345,7 @@ retry_open: goto failure; } - pDevice->szDeviceName = strdup(PlaybackDeviceList[lDeviceID]); + pDevice->DeviceName = strdup(PlaybackDeviceList[lDeviceID]); return ALC_NO_ERROR; failure: @@ -615,7 +615,7 @@ static ALCenum WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName) if (pData->hWaveThread == NULL) goto failure; - pDevice->szDeviceName = strdup(CaptureDeviceList[lDeviceID]); + pDevice->DeviceName = strdup(CaptureDeviceList[lDeviceID]); return ALC_NO_ERROR; failure: -- cgit v1.2.3