mirror of https://github.com/BOINC/boinc.git
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:
parent
8a9c474b72
commit
af4e85a9cc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue