[MPlayer-cvslog] CVS: main/libvo vo_macosx.m,1.34,1.35
Nicolas Plourde CVS
syncmail at mplayerhq.hu
Sat Mar 4 13:37:46 CET 2006
CVS change done by Nicolas Plourde CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv8505/libvo
Modified Files:
vo_macosx.m
Log Message:
update activity every 30 sec
Index: vo_macosx.m
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_macosx.m,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- vo_macosx.m 7 Feb 2006 01:36:32 -0000 1.34
+++ vo_macosx.m 4 Mar 2006 12:37:44 -0000 1.35
@@ -723,7 +723,7 @@
}
}
- //update activity every 60 seconds to prevent
+ //update activity every 30 seconds to prevent
//screensaver from starting up.
DateTimeRec d;
unsigned long curTime;
@@ -732,7 +732,7 @@
GetTime(&d);
DateToSeconds( &d, &curTime);
- if( ( (curTime - lastTime) >= 60) || (lastTime == 0))
+ if( ( (curTime - lastTime) >= 30) || (lastTime == 0))
{
UpdateSystemActivity(UsrActivity);
lastTime = curTime;
More information about the MPlayer-cvslog
mailing list