X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2Ftinyfps.c;h=83e010f7cf11a9aebd9da9eccb6f6c62e9fcca26;hp=4c97424e69cc05ec9b7f280a20219dc275afeb66;hb=45f6f46fe758d15aafccdb69ae837fc7d84ee466;hpb=695b69a4c4acbaee28d99851d711c00b2468e280 diff --git a/src/tinyfps.c b/src/tinyfps.c index 4c97424..83e010f 100644 --- a/src/tinyfps.c +++ b/src/tinyfps.c @@ -47,6 +47,7 @@ void initFpsFonts() } } + i = 0; for (n = 0; n < FPS_FONTS_NUM; n++) { for (y = 0; y < FPS_FONT_HEIGHT; y++) @@ -122,5 +123,7 @@ void drawFps(unsigned short *vram) startingFpsTime = time_msec; nFrames = 0; } - drawDecimal(fps, 4, 4, 2, vram); + //drawDecimal(fps, 4, 4, 2, vram); + // Moving this on the lower left side of screen for now, since the lack of double buffering generates flickering for this atm + drawDecimal(fps, 4, fb_height - 12, 2, vram); }