- API: fix bug introduced in 13696 causing no graphics on Linux

svn path=/trunk/boinc/; revision=13922
This commit is contained in:
David Anderson 2007-10-22 03:15:51 +00:00
parent 1239291e44
commit 615e108441
2 changed files with 7 additions and 1 deletions

View File

@ -189,8 +189,8 @@ void boinc_graphics_loop(int argc, char** argv) {
} }
boinc_glut_init(); boinc_glut_init();
make_window(); make_window();
#ifdef __APPLE__
glutTimerFunc(TIMER_INTERVAL_MSEC, timer_handler, 0); glutTimerFunc(TIMER_INTERVAL_MSEC, timer_handler, 0);
#ifdef __APPLE__
// Apparently glut changed our working directory in OS 10.3.9 // Apparently glut changed our working directory in OS 10.3.9
chdir(dir); chdir(dir);
#endif #endif

View File

@ -9725,3 +9725,9 @@ David 21 Oct 2007
client/ client/
app.C app.C
David 21 Oct 2007
- API: fix bug introduced in 13696 causing no graphics on Linux
api/
graphics2_unix.C