From 8a307d666601a9f8accfb8a447614bdc3e9474bd Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Thu, 4 Sep 2014 14:20:56 +0200 Subject: [PATCH] fix wrong ordering of report. --- src/bin/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/main.h b/src/bin/main.h index 5a99c44..5a861eb 100644 --- a/src/bin/main.h +++ b/src/bin/main.h @@ -92,8 +92,8 @@ int engine_abort(void); { \ double fps; \ fps = (double)f / t; \ - ui_fps(fps); \ printf("%4.2f , %s\n", fps, x); \ + ui_fps(fps); \ done = 1; \ }