Search
lxdream.org :: lxdream :: r275:005945dbb813
lxdream 0.9.1
released Jun 29
Download Now
changeset275:005945dbb813
parent274:4e8f1e988d80
child276:1e594c2804f8
authornkeynes
dateThu Jan 11 12:15:36 2007 +0000 (17 years ago)
Always return nanosecs (noone really cares, but for correctness sake)
src/gui/gui.c
1.1 --- a/src/gui/gui.c Thu Jan 11 12:14:57 2007 +0000
1.2 +++ b/src/gui/gui.c Thu Jan 11 12:15:36 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: gui.c,v 1.12 2006-06-19 11:00:42 nkeynes Exp $
1.6 + * $Id: gui.c,v 1.13 2007-01-11 12:15:36 nkeynes Exp $
1.7 *
1.8 * Top-level GUI (GTK2) module.
1.9 *
1.10 @@ -125,8 +125,8 @@
1.11 while( gtk_events_pending() )
1.12 gtk_main_iteration();
1.13 update_icount(main_debug);
1.14 - return nanosecs;
1.15 }
1.16 + return nanosecs;
1.17 }
1.18
1.19 void gtk_gui_update(void) {
.