summaryrefslogtreecommitdiff
path: root/drivers/theoraplayer/src
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-11-06 11:02:40 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-11-06 11:02:40 -0300
commitfc676fa6f8de6b0b24cf54ecfa3f9221c607095c (patch)
tree61f54bf6c962b21c9047b26cc740e684db967d25 /drivers/theoraplayer/src
parent0dbedd18fc62f700e92a4cf581e505d849bc47ad (diff)
missing files with fixes for shower of bullets
Diffstat (limited to 'drivers/theoraplayer/src')
-rw-r--r--drivers/theoraplayer/src/TheoraVideoClip.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/theoraplayer/src/TheoraVideoClip.cpp b/drivers/theoraplayer/src/TheoraVideoClip.cpp
index 3ee4b83370..b71319e6a1 100644
--- a/drivers/theoraplayer/src/TheoraVideoClip.cpp
+++ b/drivers/theoraplayer/src/TheoraVideoClip.cpp
@@ -75,7 +75,7 @@ TheoraVideoClip::~TheoraVideoClip()
if (mAudioInterface)
{
mAudioMutex->lock(); // ensure a thread isn't using this mutex
- memdelete(mAudioInterface); // notify audio interface it's time to call it a day
+ delete mAudioInterface; // notify audio interface it's time to call it a day
mAudioMutex ->unlock();
delete mAudioMutex;
}