diff options
Diffstat (limited to 'src/demos/fbo_firecube.c')
-rw-r--r-- | src/demos/fbo_firecube.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/demos/fbo_firecube.c b/src/demos/fbo_firecube.c index 333c04c7..eefbb640 100644 --- a/src/demos/fbo_firecube.c +++ b/src/demos/fbo_firecube.c @@ -584,7 +584,8 @@ drawfire(void) GLfloat seconds = (t - T0) / 1000.0; GLfloat fps = Frames / seconds; sprintf(frbuf, "Frame rate: %f", fps); - printf("%s\n", frbuf); + printf("%s\n", frbuf); + fflush(stdout); T0 = t; Frames = 0; } |