Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Actually remove lttc.
  • Loading branch information
RachelBryk committed Jan 19, 2013
1 parent d6cee44 commit 01d393e
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Source/Core/Core/Src/Core.cpp
Expand Up @@ -310,8 +310,6 @@ void CpuThread()
g_video_backend->Video_Prepare();
}

Common::SetCurrentThreadAffinity(1); // Force to first core

#if defined(_M_X64)
EMM::InstallExceptionHandler(); // Let's run under memory watch
#endif
Expand Down Expand Up @@ -343,8 +341,6 @@ void FifoPlayerThread()
Common::SetCurrentThreadName("FIFO-GPU thread");
}

Common::SetCurrentThreadAffinity(1); // Force to first core

g_bStarted = true;

// Enter CPU run loop. When we leave it - we are done.
Expand All @@ -369,13 +365,6 @@ void EmuThread()

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.Summarize(), 8000);
DisplayMessage(_CoreParameter.m_strFilename, 3000);
Expand Down

0 comments on commit 01d393e

Please sign in to comment.