Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix movie player on linux
thx @ delroth for the patch
  • Loading branch information
degasus committed Jul 28, 2013
1 parent 5d38a9c commit 531c299
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/Core/Src/Movie.cpp
Expand Up @@ -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());
Expand All @@ -167,6 +168,7 @@ void Init()
{
GetSettings();
std::thread md5thread(GetMD5);
md5thread.detach();
}

g_frameSkipCounter = g_framesToSkip;
Expand Down

0 comments on commit 531c299

Please sign in to comment.