summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorNolan Check <Nolan.Check@gmail.com>2009-08-02 22:02:16 +0000
committerNolan Check <Nolan.Check@gmail.com>2009-08-02 22:02:16 +0000
commitd68303219c9c25a1ec412333d9ecfa91c2679d2e (patch)
tree3655d65b52cd777df980e196b1e0600e3f9c34bb /Source
parentb49a75366d85cf851089f6d94af8d2a9a0f6bfe6 (diff)
Fix Linux build?
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3932 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/Src/HW/DVDInterface.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Core/Src/HW/DVDInterface.cpp b/Source/Core/Core/Src/HW/DVDInterface.cpp
index 14837f94ca..6e78694354 100644
--- a/Source/Core/Core/Src/HW/DVDInterface.cpp
+++ b/Source/Core/Core/Src/HW/DVDInterface.cpp
@@ -275,7 +275,11 @@ void Shutdown()
{
g_dvdQuitSignal = true;
g_dvdAlert.Set();
+#ifdef _WIN32
g_dvdThread->WaitForDeath(3000);
+#else
+ g_dvdThread->WaitForDeath();
+#endif
delete g_dvdThread;
g_dvdThread = NULL;