From 531c299bde087099574415b00e419017b1161bab Mon Sep 17 00:00:00 2001 From: degasus Date: Sun, 28 Jul 2013 17:55:35 +0200 Subject: [PATCH] fix movie player on linux thx @ delroth for the patch --- Source/Core/Core/Src/Movie.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/Src/Movie.cpp b/Source/Core/Core/Src/Movie.cpp index e05afd1c42..e4711c2e14 100644 --- a/Source/Core/Core/Src/Movie.cpp +++ b/Source/Core/Core/Src/Movie.cpp @@ -156,6 +156,7 @@ void Init() { ReadHeader(); std::thread md5thread(CheckMD5); + md5thread.detach(); if ((strncmp((char *)tmpHeader.gameID, Core::g_CoreStartupParameter.GetUniqueID().c_str(), 6))) { PanicAlert("The recorded game (%s) is not the same as the selected game (%s)", tmpHeader.gameID, Core::g_CoreStartupParameter.GetUniqueID().c_str()); @@ -167,6 +168,7 @@ void Init() { GetSettings(); std::thread md5thread(GetMD5); + md5thread.detach(); } g_frameSkipCounter = g_framesToSkip;