*** empty log message ***

svn path=/trunk/boinc/; revision=12053
This commit is contained in:
David Anderson 2007-02-08 16:38:02 +00:00
parent ea10b88346
commit d0e0254ee2
2 changed files with 8 additions and 1 deletions

View File

@ -1548,3 +1548,10 @@ David 7 Feb 2008
html/inc html/inc
forum_email.inc forum_email.inc
David 8 Feb 2008
- core client: fix bug where screensaver would turn on an off
if CPU throttling being used
client/
ss_logic.C

View File

@ -140,7 +140,7 @@ void SS_LOGIC::poll() {
if (!do_ss) return; if (!do_ss) return;
if (gstate.tasks_suspended) { if (gstate.suspend_reason & (~SUSPEND_REASON_CPU_USAGE_LIMIT)) {
reset(); reset();
ss_status = SS_STATUS_BOINCSUSPENDED; ss_status = SS_STATUS_BOINCSUSPENDED;
return; return;