X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Ffps.c;h=1cd39271f1f123cd03c94fa640aa44bf887b5167;hp=8a63ccff7fbabdd119fda1b0c55697d3f9c808e0;hb=f8cf5ac7b2f53510f80a0eaf286a25298be17bfe;hpb=ec8d2b32b63649e6d32bdfb306eda062769af823 diff --git a/hacks/fps.c b/hacks/fps.c index 8a63ccff..1cd39271 100644 --- a/hacks/fps.c +++ b/hacks/fps.c @@ -56,7 +56,8 @@ fps_init (Display *dpy, Window window) st->x = 10; st->y = 10; if (get_boolean_resource (dpy, "fpsTop", "FPSTop")) - st->y = - (st->font->ascent + st->font->descent + 10); + /* don't leave a blank line in GL top-fps. */ + st->y = - (/*st->font->ascent +*/ st->font->descent + 10); strcpy (st->string, "FPS: ... "); @@ -198,7 +199,7 @@ string_width (XFontStruct *f, const char *c, int *height_ret) } -/* This function is used only in Xlib mode. For GL mode, see glx/fps-glx.c. +/* This function is used only in Xlib mode. For GL mode, see glx/fps-gl.c. */ void fps_draw (fps_state *st)