From 8024ae981f39d370af5cceb3cb97f62820b0a120 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Mon, 19 Sep 2016 04:16:05 +0300 Subject: [PATCH] fixed bug introduced by moving the loop variables out of the for loops --- src/tinyfps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tinyfps.c b/src/tinyfps.c index 4c97424..7844748 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++) -- 1.7.10.4