diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2014-09-04 14:20:56 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2014-09-04 14:21:20 +0200 |
commit | 578c0b4318a3a557a94098bf4bde0375012ae761 (patch) | |
tree | 85559365e71c0d0f659acbb6296a64e34ed18d3d | |
parent | 12a82574519bb98523e071ea37249ee8e41675dd (diff) |
fix wrong ordering of report.
-rw-r--r-- | src/bin/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); | |||
92 | { \ | 92 | { \ |
93 | double fps; \ | 93 | double fps; \ |
94 | fps = (double)f / t; \ | 94 | fps = (double)f / t; \ |
95 | ui_fps(fps); \ | ||
96 | printf("%4.2f , %s\n", fps, x); \ | 95 | printf("%4.2f , %s\n", fps, x); \ |
96 | ui_fps(fps); \ | ||
97 | done = 1; \ | 97 | done = 1; \ |
98 | } | 98 | } |
99 | 99 | ||