diff options
author | Chris Robinson <[email protected]> | 2012-04-19 22:50:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-19 22:50:11 -0700 |
commit | b023dbe7b87921a5b4eab0ed759e7b3dd04acf57 (patch) | |
tree | 1a222fbd4e317cfdd5811b6b2257b2c02abab39b /Alc/backends/opensl.c | |
parent | 8092cd92058f3fa1ad42f8c46049c0bc39ae82ab (diff) |
Remove hungarian notation from the device and context structs
Diffstat (limited to 'Alc/backends/opensl.c')
-rw-r--r-- | Alc/backends/opensl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/opensl.c b/Alc/backends/opensl.c index 5ff60276..1240b2e8 100644 --- a/Alc/backends/opensl.c +++ b/Alc/backends/opensl.c @@ -231,7 +231,7 @@ static ALCenum opensl_open_playback(ALCdevice *Device, const ALCchar *deviceName return ALC_INVALID_VALUE; } - Device->szDeviceName = strdup(deviceName); + Device->DeviceName = strdup(deviceName); Device->ExtraData = data; return ALC_NO_ERROR; |