diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-01-18 23:42:37 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-01-18 23:42:37 -0500 |
| commit | c4bd6329c003686fd43002fc4f78f735166b6cbd (patch) | |
| tree | 0f2f06c5be3c349f95ec0611c1f5ed216145cc09 /Source/Core/AudioCommon | |
| parent | 5ff77f9c882acdec1bd673d883dded9d219b8fa0 (diff) | |
Fully fix that clear bug in aldlist.cpp. Seems I missed part. Corrected it.
Diffstat (limited to 'Source/Core/AudioCommon')
| -rw-r--r-- | Source/Core/AudioCommon/Src/aldlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/Src/aldlist.cpp b/Source/Core/AudioCommon/Src/aldlist.cpp index 5e2e072f7b..fa11fe3282 100644 --- a/Source/Core/AudioCommon/Src/aldlist.cpp +++ b/Source/Core/AudioCommon/Src/aldlist.cpp @@ -146,7 +146,7 @@ ALDeviceList::~ALDeviceList() { for (u32 i = 0; i < vDeviceInfo.size(); i++) { if (vDeviceInfo[i].pvstrExtensions) { - vDeviceInfo[i].pvstrExtensions->empty(); + vDeviceInfo[i].pvstrExtensions->clear(); delete vDeviceInfo[i].pvstrExtensions; } } |
