*** empty log message ***

svn path=/trunk/boinc/; revision=3442
This commit is contained in:
David Anderson 2004-05-25 05:35:59 +00:00
parent f1ac164bf1
commit ac9d3ce37f
1 changed files with 2 additions and 2 deletions

View File

@ -208,11 +208,11 @@ bool throttled_app_render(int x, int y, double t) {
// //
if (ok_to_render) { if (ok_to_render) {
if (boinc_max_gfx_cpu_frac) { if (boinc_max_gfx_cpu_frac) {
boinc_thread_cpu_time(t0, m); boinc_calling_thread_cpu_time(t0, m);
} }
app_graphics_render(x, y, t); app_graphics_render(x, y, t);
if (boinc_max_gfx_cpu_frac) { if (boinc_max_gfx_cpu_frac) {
boinc_thread_cpu_time(t1, m); boinc_calling_thread_cpu_time(t1, m);
total_render_time += t1 - t0; total_render_time += t1 - t0;
} }
return true; return true;