Actually remove lttc.

This commit is contained in:
Rachel Bryk 2013-01-19 15:21:00 -05:00
parent d6cee44be0
commit 01d393ed6c

View file

@ -310,8 +310,6 @@ void CpuThread()
g_video_backend->Video_Prepare(); g_video_backend->Video_Prepare();
} }
Common::SetCurrentThreadAffinity(1); // Force to first core
#if defined(_M_X64) #if defined(_M_X64)
EMM::InstallExceptionHandler(); // Let's run under memory watch EMM::InstallExceptionHandler(); // Let's run under memory watch
#endif #endif
@ -343,8 +341,6 @@ void FifoPlayerThread()
Common::SetCurrentThreadName("FIFO-GPU thread"); Common::SetCurrentThreadName("FIFO-GPU thread");
} }
Common::SetCurrentThreadAffinity(1); // Force to first core
g_bStarted = true; g_bStarted = true;
// Enter CPU run loop. When we leave it - we are done. // Enter CPU run loop. When we leave it - we are done.
@ -369,13 +365,6 @@ void EmuThread()
Common::SetCurrentThreadName("Emuthread - Starting"); Common::SetCurrentThreadName("Emuthread - Starting");
{
if (cpu_info.num_cores > 3) // Force to third, non-HT core
Common::SetCurrentThreadAffinity(4);
else // Force to second core
Common::SetCurrentThreadAffinity(2);
}
DisplayMessage(cpu_info.brand_string, 8000); DisplayMessage(cpu_info.brand_string, 8000);
DisplayMessage(cpu_info.Summarize(), 8000); DisplayMessage(cpu_info.Summarize(), 8000);
DisplayMessage(_CoreParameter.m_strFilename, 3000); DisplayMessage(_CoreParameter.m_strFilename, 3000);