From d68303219c9c25a1ec412333d9ecfa91c2679d2e Mon Sep 17 00:00:00 2001 From: Nolan Check Date: Sun, 2 Aug 2009 22:02:16 +0000 Subject: [PATCH] Fix Linux build? git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3932 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/DVDInterface.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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;