FreeBASIC  0.91.0
io_viewupdate.c
Go to the documentation of this file.
1 /* view print update (console, no gfx) */
2 
3 #include "../fb.h"
4 #include "fb_private_console.h"
5 
6 void fb_ConsoleViewUpdate( void )
7 {
8  int top = fb_ConsoleGetTopRow( );
9  if( top >= 0 )
10  ++top;
11  else
12  top = 1;
13  fb_ConsoleLocate( top, 1, -1 );
14 }