mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 17:49:48 -06:00
fix movie player on linux
thx @ delroth for the patch
This commit is contained in:
@ -156,6 +156,7 @@ void Init()
|
|||||||
{
|
{
|
||||||
ReadHeader();
|
ReadHeader();
|
||||||
std::thread md5thread(CheckMD5);
|
std::thread md5thread(CheckMD5);
|
||||||
|
md5thread.detach();
|
||||||
if ((strncmp((char *)tmpHeader.gameID, Core::g_CoreStartupParameter.GetUniqueID().c_str(), 6)))
|
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());
|
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();
|
GetSettings();
|
||||||
std::thread md5thread(GetMD5);
|
std::thread md5thread(GetMD5);
|
||||||
|
md5thread.detach();
|
||||||
}
|
}
|
||||||
|
|
||||||
g_frameSkipCounter = g_framesToSkip;
|
g_frameSkipCounter = g_framesToSkip;
|
||||||
|
Reference in New Issue
Block a user