MGR: Don't mark a project as supported if it requires a coprocessor we lack

svn path=/trunk/boinc/; revision=23753
This commit is contained in:
Charlie Fenton 2011-06-19 22:00:10 +00:00
parent 8a9c474b72
commit af4e85a9cc
1 changed files with 2 additions and 6 deletions

View File

@ -714,15 +714,11 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
}
if (pProjectInfo->m_bProjectSupportsATIGPU) {
if (!pDoc->state.have_ati) {
continue;
}
if (!pDoc->state.have_ati) continue;
}
if (pProjectInfo->m_bProjectSupportsMulticore) {
if (pDoc->host.p_ncpus < 4) {
continue;
}
if (pDoc->host.p_ncpus < 4) continue;
}
// Application has CUDA, ATI or MT if required, or none are required